.form-section {
  position: relative;
  background-color: var(--bs-white);
  padding: 40px 0;
}
@media (min-width: 768px) {
  .form-section {
    padding: 64px 0;
  }
}
@media (max-width: 767.98px) {
  .form-section__image {
    display: none;
  }
}
@media (min-width: 768px) {
  .form-section__image {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 580px;
    object-fit: cover;
  }
}
.form-section__inner {
  background-color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .form-section__inner {
    position: relative;
    z-index: 1;
    max-width: 710px;
  }
}
.form-section__text {
  margin-top: 12px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .form-section__text {
    font-size: 18px;
    color: var(--bs-body-color);
  }
}
.form-section__form {
  margin-top: 24px;
}
.form-section__img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-section__img picture {
  display: block;
}
.form-section__img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
