/* CSS Document */
.form {
  float: left;
  width: 100%;
}
.form .field {
  float: left;
  width: 100%;
  margin-bottom: 5px;
}
.form .field:last-child {
  margin-bottom: 0;
}
.form .field label {
  float: left;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  color: #888;
  margin-top: 10px;
  text-align: left;
}
	
.form .field label b {
  font-weight: 400;
  color: #F00;
}
.form .field .campo {
  float: left;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  color: #eee;
  border: 1px;
  border-radius:3px;
   -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
}


.form .field textarea.form-control {
  min-width: 100%;
  max-width: 100%;
  min-height: 150px;
}
.form .field .form-control.telefone {
  width: 50%;
  top: 0px;
  font-weight: normal;
}
.form .field .form-control.cel {
  width: 50%;
  top: 0px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .form .field .campo.telefone {
    width: 100%;
  }
}
.form .field .botao {
  font-size: 1rem;
  color: #FFF;
  border: none;
  background: #000 no-repeat 15px center;
  padding: 10px 20px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -webkit-transition: 0.2s ease-in-out;
  -webkit-transition-property: all;
  -moz-transition: 0.2s ease-in-out;
  -moz-transition-property: all;
  -o-transition: 0.2s ease-in-out;
  -o-transition-property: all;
  -ms-transition: 0.2s ease-in-out;
  -ms-transition-property: all;
  transition: 0.2s ease-in-out;
  transition-property: all;
}
.form .field .botao:hover {
  background-color: #0d1744;
}
.form .field .botao:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.form .field .botao.sucess:active,
.form .field .botao.error:active {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.form .field .botao.wait {
  background-color: #fff;
  background-image: url(../imagens/282.GIF);
  padding-left: 50px;
  color: #888;
}
.form .field .botao.sucess {
  background-color: #009B08;
  background-image: url(../imagens/check-20-fff.png);
  padding-left: 50px;
  color: #FFF;
}
.form .field .botao.error {
  background-color: #900;
  background-image: url(../imagens/error-20-fff.png);
  padding-left: 50px;
  color: #FFF;
}
input[type='file'] {
  float:left;
  color:#ffffff;
}

.form-check-label {
  margin-bottom: 8px;
}

.form .alert-form {
  font-size: 14px !important;
  padding: 15px 0px 0px 0px;
}

