main {
  min-height: 100vh;
}
section.ssm-request-demo {
  background-image: url('/new_landing/images/request-form/section-header.png');
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
  background-origin: var(--color-dark-indigo);
  .section-title {
    color: #ffffff;
  }
  .curve-yellow {
    position: absolute;
    top: 0;
    right: -390px;
    z-index: 1;
  }
  .curve-pink {
    position: absolute;
    bottom: 0;
    left: -580px;
    z-index: 1;
  }

  .form-container {
    margin-top: 70px;
    padding: 2rem;
    border-radius: 15px;
    border: 4px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
  }

  .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  .required-field .form-label::after {
    content: ' *';
    color: #dc3545;
  }
  .btn-primary {
    background-color: var(--color-pink);
    border-color: var(--color-pink);
    padding: 0.75rem 2rem;
    font-weight: 500;
  }
  .btn-primary:hover {
    background-color: transparent;
    border-color: var(--color-pink);
    color: var(--color-pink);
  }
  .btn-outline-secondary {
    padding: 0.75rem 2rem;
    font-weight: 500;
  }
  .form-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 1rem;
  }
  .form-control,
  .form-select {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 0.75rem;
  }
  .form-control:focus,
  .form-select:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
  }
  .form-check-input:checked {
    background-color: #6c5ce7;
    border-color: #6c5ce7;
  }
  .intro-text {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }
}

@media only screen and (max-width: 768px) {
  section.ssm-request-demo {
    .curve-yellow,
    .curve-pink {
      display: none;
    }
  }
}
