.wcl-customers-form .row {
  row-gap: 20px;
}
.wcl-customers-form .data-content,
.wcl-customers-form .data-form {
  height: 100%;
  min-height: 75vh;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
}
.wcl-customers-form .data-content {
  background: #f5f5f5;
  text-align: center;
}
.wcl-customers-form .data-content .data-title {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 900;
  line-height: normal;
}
.wcl-customers-form .data-content .data-description {
  font-weight: 500;
}
.wcl-customers-form .data-content .data-description > *:not(:last-child) {
  margin-bottom: 1.2rem;
}
.wcl-customers-form .data-form {
  color: var(--white-color);
  background: var(--accent-color);
}
.wcl-customers-form .data-form .data-title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 900;
  line-height: normal;
}
.wcl-customers-form .data-form .wcl-input-wrapper:not(:last-child) {
  margin-bottom: 25px;
}
.wcl-customers-form .data-form .wcl-input-wrapper label {
  color: var(--white-color);
}
.wcl-customers-form .data-form .wcl-input-wrapper input {
  padding: 12px;
  font-size: 18px;
  color: var(--white-color);
}
.wcl-customers-form .data-form .wcl-input-wrapper input::-moz-placeholder {
  color: var(--white-color);
  opacity: 0.75;
}
.wcl-customers-form .data-form .wcl-input-wrapper input::placeholder {
  color: var(--white-color);
  opacity: 0.75;
}
.wcl-customers-form .data-form .wcl-input-wrapper .wcl-input {
  border-color: var(--white-color);
}
.wcl-customers-form .data-form .wcl-input-wrapper .wcl-input::before {
  content: "";
  display: none;
  width: 0;
  height: 0;
}
.wcl-customers-form .wcl-button-wrapper {
  margin-top: 30px;
}
.wcl-customers-form .wcl-button-wrapper .wcl-button {
  width: 100%;
}
.wcl-customers-form .wcl-button-wrapper .wcl-button.wcl-button-white:hover {
  background: #e8e8e8;
  color: var(--accent-color);
}
.wcl-customers-form .wcl-form-wrapper .just-validate-error-label {
  left: 10px;
  color: var(--dark-color) !important;
}
@media only screen and (max-width: 1200px) {
  .wcl-customers-form .data-content .data-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .wcl-customers-form .data-content,
  .wcl-customers-form .data-form {
    min-height: unset;
  }
}
@media only screen and (max-width: 768px) {
  .wcl-customers-form .data-content .data-title {
    font-size: 35px;
  }
}
