  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Poppins', sans-serif;
  }

  html {
      scroll-behavior: smooth;
  }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}


  .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(8px);
  }

  .lightbox.active {
      display: flex;
  }

  .recruiter-card {
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid #e5e7eb;
      text-align: center;
      transition: all 0.3s;
      padding: 40px;
  }

  .recruiter-card:hover {
      background: white;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transform: scale(1.05);
  }

  .recruiter-logo {
      height:auto;
  }

  .recruiter-logo img {
      max-height: 100%;
      max-width: 100%;
      object-fit: contain;
  }

  .recruiter-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center;
      padding: 10px;
  }

  .recruiter-wrap .col {
      flex: 1 1 220px;
      max-width: 220px;
  }

  @media (max-width: 768px) {
      .recruiter-wrap .col {
          flex: 1 1 48%;
          max-width: 48%;
      }
      .cta-button{
        padding:12px !important;
        font-size: 16px !important;
        font-weight: 500 !important;
      }
      .header {
          flex-direction: column;
      }

      .recruiter-logo {
          height: 120px;
      }
  }



  
.form_L {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    margin: 0;
}

.form-container {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 450px; /* Limits width on desktop */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}


.form-group {
    margin-bottom: 15px;
}

input, select {
    width: 100% !important;
    padding: 12px !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 6px !important;
    color: #333 ;
    font-size: 16px ;
    outline: none ;
    transition: border-color 0.2s !important;
}

input:focus, select:focus {
    border-color: #1a5276;
}

/* Phone Layout */
.phone-group {
    display: flex !important;
    gap: 10px;
    margin-bottom: 15px;
}

.country-code {
    width: 70px !important;
    text-align: center;
    background-color: #fdfdfd;
}

.mobile-input {
    flex: 1;
}

/* State and City Row */
.location-group {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

/* Submit Button */
.register-btn {
    width: 80%;
    background-color: #b30000; 
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.1s, background 0.2s;
}

.register-btn:active {
    transform: scale(0.98);
}

.login-link {
    display: block;
    margin-top: 20px;
    color: #1a5276;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }
    
    /* Stack State and City on very small screens */
    .location-group {
        flex-direction: column;
        gap: 15px;
    }

    .register-btn {
        width: 100%; /* Full width button on mobile */
    }
}


