

    form {
      width: 100%;
      margin: 0;
      padding: 0;
      background: none;
      border: none;
      border-radius: 0;
    }

    .form-section {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      /* Use more padding and full width */
      padding: 48px 4vw;
      margin: 0 auto 40px auto;
      max-width: 100vw;
      width: 100%;
      box-shadow: 0 2px 12px rgba(30,26,114,0.07);
    }

    .form-title {
      font-size: 2rem;
      font-weight: 700;
      color: #1e1a72;
      margin-bottom: 28px;
      text-align: center;
      letter-spacing: 1px;
    }

    .form-row {
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
      margin-bottom: 0;
    }

    .form-row .form-group {
      flex: 1 1 350px;
      min-width: 300px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 24px;
    }

    .form-group label {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
      display: block;
    }

    .form-group label span.required {
      color: #b91c1c;
      margin-left: 3px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 16px;
      font-size: 16px;
      border: 1px solid #fbbf24;
      border-radius: 5px;
      color: #333;
      background: #fafafa;
      transition: border 0.2s;
    }

    .form-group textarea {
      resize: vertical;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #1e1a72;
      outline: none;
    }

    .underline-group {
      border-bottom: 2px solid #1e1a72;
      margin-bottom: 16px;
    }

    .underline-red {
      border-bottom-color: #b91c1c;
    }

    .inline-fields {
      display: flex;
      flex-direction: column;
    }

    .inline-fields .form-group {
      flex: 1;
      margin-right: 0;
    }

    .inline-fields .form-group + .form-group {
      margin-top: 16px;
    }

    .photo-upload {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-bottom: 24px;
    }

    .upload-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 120px;
      height: 140px;
      border: 1.5px dashed #bdbdbd;
      border-radius: 7px;
      font-size: 15px;
      color: #555;
      cursor: pointer;
      background: #f9fafb;
      transition: border 0.2s;
    }

    .upload-box:hover {
      border-color: #1e1a72;
    }

    .upload-box i {
      font-size: 28px;
      margin-bottom: 7px;
    }

    .sapath-checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
    }

    .sapath-checkbox {
      margin-top: 3px;
      accent-color: #1e1a72;
      width: 22px;
      height: 22px;
    }

    .disclaimer {
      font-size: 15px;
      color: #222;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .submit-btn {
      text-align: center;
      margin-top: 24px;
    }

    .submit-btn button {
      background: linear-gradient(to right, #1e1a72, #7e2a7e);
      color: white;
      font-weight: bold;
      font-size: 18px;
      padding: 14px 48px;
      border: none;
      border-radius: 7px;
      cursor: pointer;
      letter-spacing: 1px;
      transition: background 0.2s;
    }

    .submit-btn button:hover {
      background: linear-gradient(to right, #7e2a7e, #1e1a72);
    }

    @media (max-width: 1200px) {
      .form-section {
        padding: 32px 2vw;
      }
      .form-row {
        gap: 18px;
      }
    }

    @media (max-width: 900px) {
      .form-section {
        padding: 18px 1vw;
      }
      .form-row {
        flex-direction: column;
        gap: 0;
      }
      .form-row .form-group {
        min-width: 180px;
      }
    }

    @media (max-width: 600px) {
      .form-section {
        padding: 8px 0;
        border-radius: 0;
        box-shadow: none;
      }
      .form-title {
        font-size: 1.2rem;
      }
      .form-group label,
      .disclaimer {
        font-size: 13px;
      }
      .form-group input,
      .form-group textarea,
      .form-group select {
        font-size: 13px;
        padding: 9px 8px;
      }
      .upload-box {
        width: 80px;
        height: 90px;
        font-size: 12px;
      }
      .upload-box i {
        font-size: 18px;
      }
      .sapath-checkbox {
        width: 16px;
        height: 16px;
      }
    }
