.contact-us-custom {
  width: 100%;
  text-align: center;
}

.contact-us-custom-field {
  margin-bottom: 20px;
}

.contact-us-custom-field textarea,
.contact-us-custom-field input {
  width: 100%;
  height: 50px;
  outline: none;
  border: none;
  border-radius: 10px;
  font-family: inherit;
}

::placeholder {
  color: #fff;
}

.contact-us-custom-field textarea {
  display: block;
  resize: none;
  height: 150px;
  padding: 15px;
}

.contact-us-custom-field_error {
  font-size: 12px;
  color: #fff;
  margin-top: 5px;
}

.contact-us-custom-field_error:empty {
  margin-top: 0;
}

.contact-us-custom_success {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(.8);
  transform: scale(.8);
  transition: all 1s ease;
  color: green;
  text-align: center;
}

.contact-us-custom.is-success .contact-us-custom_success {
  position: relative;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 2;
}

#contactUsCustomBtn {
  border: none;
  width: 100px;
  border-radius: 30px;
  color: #459fff;
  text-transform: uppercase;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

#input-field-name {
  background-color: #459fff;
}

#input-field-email {
  background-color: #5baaff;
}

#textarea-field {
  background-color: #7cbbff;
}

#input-field-name:hover,
#input-field-email:hover,
#textarea-field:hover {
  background-color: #ffffff50;
}