.form-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: url("def67cee-aff40478678357191478d7040943a0bb.webp");
  background-size: cover;
  background-position: center;

}

.form-section-inner-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 56px 24px;
}

.form-section-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-section-background-img {
  background-image: url("def67cee-aff40478678357191478d7040943a0bb.webp");
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.form-section-background-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.form-section-title {
  color: var(--3, #191717);
  font-family: "TT Ramillas Trl";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  /* 36px */
}

.form-section-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.form-section-form-btn {
  width: 70%;
  padding: 15px;
}

@media(min-width: 992px) {
  .form-section-background-img {
    background-image: url("about-us-img-desktop.jpg");
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
  }

  .form-section {
    padding: 64px;
  }

  .form-section-background-gradient {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 24px 0px 0px 24px;
  }

  .form-section-inner-wrapper {
    align-items: flex-start;
    max-width: 1260px;
    position: relative;
    padding: 64px;
    border-radius: 24px;
  }

  .form-section-title {
    max-width: 700px;
  }
}