
#contato form row{
    margin-bottom: 25px;
}

#contato h3{
  color: white;
  margin-top: 50px;
}

#mensagem{ 
	width: 100%; 
	padding: 24px 12px;
	border: 1px white solid;
    color: white;
    background: transparent;
    margin-bottom: 23px;
    border-radius: 5px;
}
#mensagem:focus{
    color: white;
    background: transparent;
}
#confirma{
  color: white;
  background: transparent;
}
.boxconfirma{
  user-select: none;
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  color: white !important;
  font-family: Raleway-Regular !important;
  font-size: 14px !important;
}
.boxconfirma input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.boxconfirma:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.boxconfirma input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  color: white;
}

/* Show the checkmark when checked */
.boxconfirma input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.boxconfirma .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


input.form-control:focus{
    color: white;
    background: transparent;
}
input.form-control:active{
    color: white;
    background: transparent;
}

input.form-control{
	border-radius: 5px;
	height: 45px;
    border: 1px white solid;
    background: transparent;  
    margin-bottom: 23px;
}
button.enviar{
	padding: 10px 50px;
	font-size: 16px;
	font-family: Raleway-Medium;
	color: white;
	background-color: transparent;
	text-align: center;
	transition: 0.3s linear;
  border: 2px white solid;
  border-radius: 5px;
}
button.enviar:hover{
	transition: 0.3s linear;
	background-color: white;
    border: 2px white solid;
    color: var(--azul-escuro);
}

::placeholder {
    color: white !important;
    font-family: Raleway-Regular !important;
    font-size: 14px !important;
    opacity: 1 !important;
  }
  #mensagem::-moz-placeholder, #mensagem::-webkit-input-placeholder {
    color: white !important;
    font-family: Raleway-Regular !important;
    font-size: 12px !important;
    opacity: 1 !important;
  }
  textarea#mensagem:-moz-placeholder {
    color: white;
    font-family: Raleway-Regular !important;
    font-size: 14px !important;
    opacity: 1 !important;
  }
  .placeholder{
    color: white;
    font-family: Raleway-Regular !important;
    font-size: 14px !important;
    opacity: 1 !important;
    border-radius: 5px;
  }
  #mensagem:-moz-placeholder {
    color: white;
    font-family: Raleway-Regular !important;
    font-size: 14px !important;
    opacity: 1 !important;
  }
  
  *::-webkit-input-placeholder, textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: white;
    font-family: Raleway-Regular !important;
    font-size: 14px !important;
    opacity: 1 !important;
  }
  *::-moz-placeholder { /* Firefox 19+ */
    color: white;
    font-family: Raleway-Regular !important;
    font-size: 14px !important;
    opacity: 1 !important;
  }
  *:-ms-input-placeholder, textarea:-ms-input-placeholder { /* IE 10+ */
    color: white;
    font-family: Raleway-Regular !important;
    font-size: 14px !important;
    opacity: 1 !important;
  }
  *:-moz-placeholder, textarea::-moz-placeholder  { /* Firefox 18- */
    color: white;
    font-family: Raleway-Regular !important;
    font-size: 14px !important;
    opacity: 1 !important;
  }