/*
.wpcf7-form
.wpcf7-form .wpcf7-form-control-wrap input {}
.wpcf7-form .wpcf7-form-control-wrap input[type=text], 
.wpcf7-form .wpcf7-form-control-wrap input[type=date], 
.wpcf7-form .wpcf7-form-control-wrap input[type=number],
.wpcf7-form .wpcf7-form-control-wrap input[type=email], 
.wpcf7-form .wpcf7-form-control-wrap textarea

.wpcf7-form .wpcf7-form-control-wrap input[type=text]:focus, 
.wpcf7-form .wpcf7-form-control-wrap input[type=date]:focus, 
.wpcf7-form .wpcf7-form-control-wrap input[type=number]:focus,
.wpcf7-form .wpcf7-form-control-wrap input[type=email]:focus, 
.wpcf7-form .wpcf7-form-control-wrap textarea:focus

.wpcf7-form .wpcf7-form-control-wrap textarea




.wpcf7-form input[type=submit].wpcf7-form-control

.wpcf7-form input[type=submit].wpcf7-submit:hover
*/
.wpcf7-form {
  background: rgba(19, 35, 47, 0.9);
  padding: 40px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 4px;
  box-shadow: 0 4px 10px 4px rgba(19, 35, 47, 0.3);
  color: #fff;
}



.wpcf7-form .wpcf7-form-control-wrap input[type=text], 
.wpcf7-form .wpcf7-form-control-wrap input[type=date], 
.wpcf7-form .wpcf7-form-control-wrap input[type=number],
.wpcf7-form .wpcf7-form-control-wrap input[type=email], 
.wpcf7-form .wpcf7-form-control-wrap textarea {
  font-size: 22px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  background: none;
  background-image: none;
  border: 1px solid #a0b3b0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: border-color .25s ease, box-shadow .25s ease;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=text]:focus, 
.wpcf7-form .wpcf7-form-control-wrap input[type=date]:focus, 
.wpcf7-form .wpcf7-form-control-wrap input[type=number]:focus,
.wpcf7-form .wpcf7-form-control-wrap input[type=email]:focus, 
.wpcf7-form .wpcf7-form-control-wrap textarea:focus {
  outline: 0;
  border-color: #1ab188;
}

.wpcf7-form .wpcf7-form-control-wrap textarea {
  border: 2px solid #a0b3b0;
  resize: vertical;
}


.wpcf7-form input[type=submit].wpcf7-form-control{
  border: 0;
  outline: none;
  border-radius: 0;
  padding: 15px 0;
  font-size: 2rem;
  font-weight: 600;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: #1ab188;
  color: #ffffff !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-appearance: none;
}
.wpcf7-form input[type=submit].wpcf7-submit:hover{
  background: #179b77;
}
