.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: 45px;
  background: var(--dl-color-primary-customblue);
  color: rgba(243, 243, 243, 0.7);
  border-top: 0;
  border-left: 0;
  border-radius: 10px;
  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: #fff;
  margin-top: 5px;
  transition: ease 500ms;
}

.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 {
  width: 100%;
  height: auto;
  display: flex;
  padding: 10px 16px;
  z-index: 1;
  background: linear-gradient(-45deg, rgba(240, 79, 121, 1) 0%, rgba(75, 32, 153, 1) 100%);
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  padding-right: 10px 16px;
  justify-content: center;
  text-decoration: none;
  background-color: var(--dl-color-button-gradient);
  cursor: pointer;
}