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

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

.contact-us-custom-field textarea,
.contact-us-custom-field input {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.50);
  border-radius: 25px;
  font-family: inherit;
  outline: 0;
}

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

.contact-us-custom-field_error {
  font-size: 12px;
  color: var(--customRed);
  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 {
  color: white;
  height: 50px;
  display: flex;
  padding: 10px 50px;
  align-items: center;
  flex-shrink: 0;
  border-color: rgba(255, 255, 255, 0.30000001192092896);
  border-style: solid;
  border-width: 1px;
  border-radius: 25px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.10000000149011612);
  cursor: pointer;
}