.form-section {
  position: relative;
  min-height: 628px;
}
.form-section__bg-img {
  position: absolute;
  top: 0;
  left: 0;
}
.form-section__content {
  display: flex;
}
.form-section__left, .form-section__right {
  width: 100%;
  max-width: 50%;
}
.form-section__right {
  display: flex;
  flex-flow: column;
  gap: 28px;
  max-width: 520px;
  width: 100%;
}
.form-section__desc {
  max-width: 400px;
  width: 100%;
}
.form-section__form {
  display: flex;
  flex-flow: column;
  gap: 20px;
  position: relative;
}
.form-section__input-cont {
  width: 100%;
  position: relative;
  border: 1px solid #EDEDED;
  border-radius: 8px;
  transition: 0.3s ease;
}
.form-section__input-cont::after {
  content: "Field has an error";
  position: absolute;
  left: 0;
  top: 108%;
  margin-left: 16px;
  font-size: 13px;
  color: transparent;
  line-height: 1;
  transition: 0.3s ease;
  z-index: 98;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
}
.form-section__input-cont.error {
  border: 1px solid #C1121F;
}
.form-section__input-cont.error::after {
  content: "Field has an error";
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 13px;
  color: #C1121F;
  line-height: 1;
  transform: translateY(0px);
  opacity: 1;
  pointer-events: all;
}
.form-section__input {
  width: 100%;
  border-radius: 8px;
  background: #EDEDED;
  font-family: Raleway;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  font-variant-numeric-figure: lining-nums;
  font-variant-numeric-spacing: proportional-nums;
  border: none;
  outline: none;
  padding: 15.5px 16px;
  color: #3A3A3A;
  transition: 0.3s ease;
  position: relative;
  z-index: 99;
}
.form-section__double-input {
  display: flex;
  width: 100%;
  gap: 20px;
  position: relative;
}
.form-section__hidden-form {
  display: none;
}
.form-section__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
  cursor: pointer;
}
.form-section__submit svg {
  transition: 0.3s ease;
}
.form-section__submit svg path {
  transition: 0.3s ease;
}
.form-section__submit:hover {
  color: #F15024;
}
.form-section__submit:hover svg {
  transform: translateX(10px);
}
.form-section__submit:hover svg path {
  fill: #F15024;
}

@media (max-width: 992px) {
  .form-section {
    min-height: 684px;
  }
  .form-section__bg-img {
    top: unset;
    bottom: 0;
    width: 100%;
    max-height: 224px;
    height: 100%;
  }
  .form-section__desc {
    max-width: 278px;
  }
  .form-section__left {
    display: none;
  }
  .form-section__title {
    text-align: right;
  }
  .form-section__double-input {
    flex-flow: column;
    gap: 16px;
  }
  .form-section__form {
    gap: 16px;
  }
}/*# sourceMappingURL=style.css.map */