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

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

.contact-us-custom-field textarea,
.contact-us-custom-field input {
  width: 80%;
  background: #407dd3;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 300;
  outline: 0;
  border: 0;
  margin: 0 auto;
  color: #fff;
}

::placeholder {
  color: #fff;
}

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

.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 {
  background-image: linear-gradient(90deg, rgba(232,33,124,1) 0%, rgba(107,32,99,1) 100%);;
  font-family: inherit;
  cursor: pointer;
  border: 0;
  border-radius: 10px;
  padding: 0.75rem 3rem;
  color: #fff;
}