/* ==========================================================
   SIGN IN PAGE - RESPONSIVE STYLES
   ========================================================== */

   .ht-auth-section {
    position: relative;
    background-color: var(--body-bg, #f6f8fc);
    padding-bottom: 60px;
  }
  
  .container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  /* ----------------------------------------------------------
     1. HERO BANNER
     ---------------------------------------------------------- */
  .auth-hero {
    position: relative;
    background: linear-gradient(135deg, #022b5c 0%, #084992 50%, #0e67c7 100%);
    color: #ffffff;
    padding: 24px 0 90px;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
  }
  
  .auth-hero__header {
    margin-bottom: 16px;
  }
  
  .auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
  }
  
  .auth-brand__logo {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  
  .auth-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  
  .auth-brand__text .brand-name {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
  }
  
  .auth-brand__text .brand-sub {
    font-size: 0.68rem;
    color: #e1ad34;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .auth-hero__bg-dots {
    position: absolute;
    top: 30px;
    width: 120px;
    height: 80px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    pointer-events: none;
  }
  .auth-hero__bg-dots.left { left: 20px; }
  .auth-hero__bg-dots.right { right: 20px; }
  
  .auth-hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }
  
  .auth-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
  }
  
  .auth-hero__title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.25;
  }
  
  .auth-hero__subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.88rem, 1.5vw, 0.98rem);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
  }
  
  .auth-hero__subtitle .highlight {
    color: #e1ad34;
    font-weight: 600;
  }
  
  /* Security Illustration Badge */
  .auth-hero__illustration {
    position: absolute;
    right: -20px;
    top: 10%;
    width: 170px;
    height: 110px;
    pointer-events: none;
  }
  
  .shield-badge {
    position: absolute;
    left: 0;
    top: 10px;
    width: 54px;
    height: 64px;
    background: #1a73e8;
    border-radius: 8px 8px 26px 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 2;
  }
  
  .login-card-graphic {
    position: absolute;
    right: 0;
    top: 0;
    width: 110px;
    height: 85px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .avatar-circle {
    width: 28px;
    height: 28px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    margin-bottom: 6px;
  }
  
  .graphic-line.long {
    width: 80%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-bottom: 6px;
  }
  
  .graphic-line.dots {
    width: 100%;
    background: #022b5c;
    color: #ffffff;
    font-size: 0.55rem;
    text-align: center;
    border-radius: 4px;
    padding: 2px 0;
  }
  
  /* ----------------------------------------------------------
     2. MAIN AUTH CONTENT CARD
     ---------------------------------------------------------- */
  .auth-content {
    position: relative;
    margin-top: -45px;
    z-index: 5;
  }
  
  .ht-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.06);
    border: 1px solid #eaf0f8;
    position: relative;
  }
  
  .auth-main-card {
    padding: 36px;
    margin-bottom: 24px;
  }
  
  .auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  /* ----------------------------------------------------------
     LEFT COLUMN: BENEFITS & GRAPHIC
     ---------------------------------------------------------- */
  .auth-benefits-col {
    padding-right: 20px;
    border-right: 1px solid #f0f4f8;
  }
  
  .benefits-title {
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 6px;
  }
  
  .benefits-title .text-gold {
    color: #d97706;
  }
  
  .benefits-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .benefits-divider .line {
    width: 28px;
    height: 2px;
    background: #e1ad34;
  }
  
  .benefits-divider .diamond {
    color: #e1ad34;
    font-size: 0.6rem;
  }
  
  .benefits-subtitle {
    font-size: 0.86rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .dashboard-preview-wrapper {
    position: relative;
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  
  .preview-dots-bg {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 70px;
    height: 70px;
    background-image: radial-gradient(#d1d5db 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    pointer-events: none;
    opacity: 0.5;
  }
  
  .preview-graphic {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    position: relative;
    z-index: 2;
  }
  
  .chair-icon {
    font-size: 2.2rem;
    color: #1a73e8;
  }
  
  .laptop-box {
    width: 100px;
    height: 68px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .laptop-screen {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a73e8;
    font-size: 1.1rem;
  }
  
  .desk-books {
    display: flex;
    gap: 4px;
  }
  
  .desk-books .book {
    width: 12px;
    height: 26px;
    border-radius: 2px;
  }
  .desk-books .b1 { background: #d97706; }
  .desk-books .b2 { background: #1a73e8; }
  
  .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.86rem;
    color: #374151;
    font-weight: 500;
  }
  
  .benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
  }
  
  .benefit-icon--blue { background: #eef5ff; color: #1a73e8; }
  .benefit-icon--gold { background: #fef6e7; color: #d97706; }
  .benefit-icon--green { background: #eaf8ef; color: #10b981; }
  .benefit-icon--purple { background: #f3e8ff; color: #8b5cf6; }
  
  /* ----------------------------------------------------------
     RIGHT COLUMN: FORM STYLES
     ---------------------------------------------------------- */
  .auth-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .auth-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a73e8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .auth-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
  }
  
  .auth-card-desc {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
  }
  
  .ht-form-group {
    margin-bottom: 16px;
  }
  
  .ht-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
  }
  
  .label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .forgot-link {
    font-size: 0.8rem;
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
  }
  
  .forgot-link:hover {
    text-decoration: underline;
  }
  
  .input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .input-icon {
    position: absolute;
    left: 14px;
    color: #9ca3af;
    font-size: 0.9rem;
    pointer-events: none;
  }
  
  .password-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
  }
  
  .ht-input {
    width: 100%;
    padding: 11px 40px 11px 40px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #111827;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .ht-input::placeholder {
    color: #9ca3af;
  }
  
  .ht-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
  }
  
  .form-options {
    margin-bottom: 18px;
  }
  
  /* Custom Checkbox */
  .checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 24px;
    cursor: pointer;
    font-size: 0.84rem;
    color: #374151;
    user-select: none;
  }
  
  .checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
  }
  
  .checkbox-container input:checked ~ .checkmark {
    background-color: #1a73e8;
    border-color: #1a73e8;
  }
  
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  
  .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Primary Button */
  .ht-btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #dfa218 0%, #c6890c 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(218, 155, 21, 0.28);
  }
  
  .ht-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(218, 155, 21, 0.38);
  }
  
  /* Social Divider */
  .auth-divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
  }
  
  .auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
  }
  
  .auth-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 10px;
    font-size: 0.76rem;
    color: #9ca3af;
  }
  
  /* Social Logins */
  .social-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 8px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
  }
  
  .social-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
  }
  
  .social-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  .social-icon.facebook {
    color: #1877f2;
    font-size: 0.95rem;
  }
  
  .auth-footer-text {
    text-align: center;
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
  }
  
  .create-acc-link {
    color: #1a73e8;
    font-weight: 700;
    text-decoration: none;
  }
  
  .create-acc-link:hover {
    text-decoration: underline;
  }
  
  /* ----------------------------------------------------------
     3. BOTTOM FEATURES BAR
     ---------------------------------------------------------- */
  .auth-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 24px;
  }
  
  .feature-col {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .feature-icon--blue { background: #eef5ff; color: #1a73e8; }
  .feature-icon--gold { background: #fef6e7; color: #d97706; }
  .feature-icon--green { background: #eaf8ef; color: #10b981; }
  .feature-icon--purple { background: #f3e8ff; color: #8b5cf6; }
  
  .feature-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
  }
  
  .feature-info p {
    font-size: 0.76rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.35;
  }
  
  /* ==========================================================
     RESPONSIVE BREAKPOINTS
     ========================================================== */
  
  /* Laptop & Tablet Desktop View (max-width: 1199.98px) */
  @media (max-width: 1199.98px) {
    .auth-hero__illustration {
      display: none; /* Hide background illustration to prevent overlap */
    }
  }
  
  /* Medium Tablets (max-width: 991.98px) */
  @media (max-width: 991.98px) {
    .auth-main-card {
      padding: 28px 24px;
    }
  
    .auth-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .auth-benefits-col {
      padding-right: 0;
      border-right: none;
      border-bottom: 1px solid #f0f4f8;
      padding-bottom: 28px;
    }
  
    .auth-features-bar {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      padding: 20px;
    }
  }
  
  /* Mobile Devices (max-width: 575.98px) */
  @media (max-width: 575.98px) {
    .container {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }
  
    .auth-hero {
      padding: 20px 0 75px;
      border-radius: 0 0 20px 20px;
    }
  
    .auth-hero__bg-dots {
      display: none;
    }
  
    .auth-content {
      margin-top: -35px;
    }
  
    .auth-main-card {
      padding: 20px 16px;
      border-radius: 16px;
    }
  
    .dashboard-preview-wrapper {
      padding: 14px;
    }
  
    .social-login-grid {
      grid-template-columns: 1fr;
    }
  
    .auth-features-bar {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 18px 16px;
    }
  
    .feature-col {
      align-items: flex-start;
    }
  }

  /* ==========================================================
   FORGOT PASSWORD PAGE STYLES
   ========================================================== */

.ht-auth-section {
    position: relative;
    background-color: var(--body-bg, #f6f8fc);
    padding-bottom: 60px;
  }
  
  .container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  /* ----------------------------------------------------------
     1. HERO BANNER
     ---------------------------------------------------------- */
  .auth-hero {
    position: relative;
    background: linear-gradient(135deg, #022b5c 0%, #084992 50%, #0e67c7 100%);
    color: #ffffff;
    padding: 24px 0 90px;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
  }
  
  .auth-hero__header {
    margin-bottom: 16px;
  }
  
  .auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
  }
  
  .auth-brand__logo {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  
  .auth-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  
  .auth-brand__text .brand-name {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
  }
  
  .auth-brand__text .brand-sub {
    font-size: 0.68rem;
    color: #e1ad34;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .auth-hero__bg-dots {
    position: absolute;
    top: 30px;
    width: 120px;
    height: 80px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    pointer-events: none;
  }
  .auth-hero__bg-dots.left { left: 20px; }
  .auth-hero__bg-dots.right { right: 20px; }
  
  .auth-hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }
  
  .auth-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
  }
  
  .auth-hero__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .auth-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .auth-hero__divider .line {
    width: 32px;
    height: 2px;
    background: #e1ad34;
  }
  
  .auth-hero__divider .diamond {
    color: #e1ad34;
    font-size: 0.65rem;
  }
  
  .auth-hero__subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.88rem, 1.5vw, 0.98rem);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
  }
  
  /* 3D Envelope Lock Graphic on Hero */
  .auth-hero__illustration {
    position: absolute;
    right: -10px;
    top: 15%;
    width: 170px;
    height: 110px;
    pointer-events: none;
  }
  
  .hero-envelope-card {
    position: relative;
    width: 130px;
    height: 90px;
    background: #1a73e8;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  }
  
  .hero-envelope-body {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .lock-chip {
    background: #1a73e8;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
  }
  
  .lock-chip .dots {
    letter-spacing: 2px;
    font-size: 0.65rem;
  }
  
  .hero-airplane-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 38px;
    height: 38px;
    background: #dfa218;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  
  /* ----------------------------------------------------------
     2. MAIN AUTH CARD (2 COLUMNS)
     ---------------------------------------------------------- */
  .auth-content {
    position: relative;
    margin-top: -45px;
    z-index: 5;
  }
  
  .ht-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.06);
    border: 1px solid #eaf0f8;
    position: relative;
  }
  
  .auth-main-card {
    padding: 36px;
    margin-bottom: 24px;
  }
  
  .auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  /* ----------------------------------------------------------
     LEFT COLUMN: BENEFITS & PREVIEW
     ---------------------------------------------------------- */
  .auth-benefits-col {
    padding-right: 20px;
    border-right: 1px solid #f0f4f8;
  }
  
  .benefits-title {
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 6px;
  }
  
  .benefits-title .text-gold {
    color: #d97706;
  }
  
  .benefits-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .benefits-divider .line {
    width: 28px;
    height: 2px;
    background: #e1ad34;
  }
  
  .benefits-divider .diamond {
    color: #e1ad34;
    font-size: 0.6rem;
  }
  
  .benefits-subtitle {
    font-size: 0.86rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .dashboard-preview-wrapper {
    position: relative;
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  
  .preview-dots-bg {
    position: absolute;
    left: 12px;
    top: 12px;
    width: 70px;
    height: 70px;
    background-image: radial-gradient(#d1d5db 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    pointer-events: none;
    opacity: 0.5;
  }
  
  .preview-envelope-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .preview-envelope {
    width: 140px;
    height: 85px;
    background: #1a73e8;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.2);
  }
  
  .preview-avatar-card {
    width: 100%;
    height: 48px;
    background: #ffffff;
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .avatar-circle-sm {
    width: 24px;
    height: 24px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
  }
  
  .preview-card-line {
    flex: 1;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
  }
  
  .preview-badge-plane {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    background: #dfa218;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }
  
  .preview-plant-pot {
    position: absolute;
    right: -36px;
    bottom: -4px;
    color: #10b981;
    font-size: 1.5rem;
  }
  
  .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.86rem;
    color: #374151;
    font-weight: 500;
  }
  
  .benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
  }
  
  .benefit-icon--blue { background: #eef5ff; color: #1a73e8; }
  .benefit-icon--gold { background: #fef6e7; color: #d97706; }
  .benefit-icon--green { background: #eaf8ef; color: #10b981; }
  
  /* ----------------------------------------------------------
     RIGHT COLUMN: FORM STYLES
     ---------------------------------------------------------- */
  .auth-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .auth-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a73e8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .auth-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
  }
  
  .auth-card-desc {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
  }
  
  .auth-alert-success {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .ht-form-group {
    margin-bottom: 18px;
  }
  
  .ht-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
  }
  
  .input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .input-icon {
    position: absolute;
    left: 14px;
    color: #9ca3af;
    font-size: 0.9rem;
    pointer-events: none;
  }
  
  .ht-input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #111827;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .ht-input::placeholder {
    color: #9ca3af;
  }
  
  .ht-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
  }
  
  .ht-input.is-invalid {
    border-color: #ef4444;
  }
  
  .ht-form-error {
    display: block;
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 4px;
  }
  
  /* Action Buttons */
  .ht-btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #dfa218 0%, #c6890c 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(218, 155, 21, 0.28);
  }
  
  .ht-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(218, 155, 21, 0.38);
  }
  
  .ht-btn-secondary {
    width: 100%;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    color: #1a73e8;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: background-color 0.15s, border-color 0.15s;
  }
  
  .ht-btn-secondary:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
  }
  
  /* Or Divider */
  .auth-divider {
    position: relative;
    text-align: center;
    margin: 18px 0;
  }
  
  .auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
  }
  
  .auth-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 10px;
    font-size: 0.76rem;
    color: #9ca3af;
  }
  
  .auth-footer-text {
    text-align: center;
    font-size: 0.82rem;
    color: #6b7280;
    margin-top: 20px;
    margin-bottom: 0;
  }
  
  .support-link {
    color: #1a73e8;
    font-weight: 700;
    text-decoration: none;
  }
  
  .support-link:hover {
    text-decoration: underline;
  }
  
  /* ----------------------------------------------------------
     3. BOTTOM FEATURES BAR
     ---------------------------------------------------------- */
  .auth-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 24px;
  }
  
  .feature-col {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .feature-icon--blue { background: #eef5ff; color: #1a73e8; }
  .feature-icon--gold { background: #fef6e7; color: #d97706; }
  .feature-icon--green { background: #eaf8ef; color: #10b981; }
  .feature-icon--purple { background: #f3e8ff; color: #8b5cf6; }
  
  .feature-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
  }
  
  .feature-info p {
    font-size: 0.76rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.35;
  }
  
  /* ==========================================================
     RESPONSIVE BREAKPOINTS
     ========================================================== */
  
  @media (max-width: 1199.98px) {
    .auth-hero__illustration {
      display: none;
    }
  }
  
  @media (max-width: 991.98px) {
    .auth-main-card {
      padding: 28px 24px;
    }
  
    .auth-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .auth-benefits-col {
      padding-right: 0;
      border-right: none;
      border-bottom: 1px solid #f0f4f8;
      padding-bottom: 28px;
    }
  
    .auth-features-bar {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      padding: 20px;
    }
  }
  
  @media (max-width: 575.98px) {
    .container {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }
  
    .auth-hero {
      padding: 20px 0 75px;
      border-radius: 0 0 20px 20px;
    }
  
    .auth-hero__bg-dots {
      display: none;
    }
  
    .auth-content {
      margin-top: -35px;
    }
  
    .auth-main-card {
      padding: 20px 16px;
      border-radius: 16px;
    }
  
    .auth-features-bar {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 18px 16px;
    }
  
    .feature-col {
      align-items: flex-start;
    }
  }

  /* ==========================================================
   HI-TECH PATHSHALA - AUTHENTICATION PAGES (SIGN UP & FORGOT)
   ========================================================== */

.auth-body {
    background-color: var(--body-bg, #f6f8fc);
    font-family: var(--font-body, system-ui, -apple-system, sans-serif);
    margin: 0;
    padding: 0;
  }
  
  .ht-auth-section {
    position: relative;
    padding-bottom: 60px;
  }
  
  .container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
  }
  
  /* ----------------------------------------------------------
     1. HERO BANNER
     ---------------------------------------------------------- */
  .auth-hero {
    position: relative;
    background: linear-gradient(135deg, #022b5c 0%, #084992 50%, #0e67c7 100%);
    color: #ffffff;
    padding: 24px 0 95px;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
  }
  
  .auth-hero__header {
    margin-bottom: 16px;
  }
  
  .auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
  }
  
  .auth-brand__logo {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }
  
  .auth-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  
  .auth-brand__text .brand-name {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
  }
  
  .auth-brand__text .brand-sub {
    font-size: 0.68rem;
    color: #e1ad34;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .auth-hero__bg-dots {
    position: absolute;
    top: 30px;
    width: 120px;
    height: 80px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    pointer-events: none;
  }
  .auth-hero__bg-dots.left { left: 20px; }
  .auth-hero__bg-dots.right { right: 20px; }
  
  .auth-hero__container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }
  
  .auth-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 14px;
  }
  
  .auth-hero__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .auth-hero__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .auth-hero__divider .line {
    width: 32px;
    height: 2px;
    background: #e1ad34;
  }
  
  .auth-hero__divider .diamond {
    color: #e1ad34;
    font-size: 0.65rem;
  }
  
  .auth-hero__subtitle {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.88rem, 1.5vw, 0.98rem);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
  }
  
  /* 3D Clipboard & Stack Illustration Graphic */
  .auth-hero__illustration {
    position: absolute;
    right: -30px;
    top: 10%;
    width: 170px;
    height: 130px;
    pointer-events: none;
  }
  
  .hero-clipboard-card {
    position: relative;
    width: 110px;
    height: 125px;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 10px 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .clipboard-top-clip {
    position: absolute;
    top: -8px;
    width: 36px;
    height: 14px;
    background: #1a73e8;
    border-radius: 4px;
  }
  
  .clipboard-avatar {
    width: 32px;
    height: 32px;
    background: #eef5ff;
    color: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
  
  .clipboard-line {
    width: 80%;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-bottom: 6px;
  }
  .clipboard-line.short { width: 50%; }
  
  .hero-shield-badge {
    position: absolute;
    left: -16px;
    bottom: 24px;
    width: 36px;
    height: 36px;
    background: #dfa218;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  /* ----------------------------------------------------------
     2. MAIN AUTH CARD (2 COLUMNS)
     ---------------------------------------------------------- */
  .auth-content {
    position: relative;
    margin-top: -50px;
    z-index: 5;
  }
  
  .ht-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.06);
    border: 1px solid #eaf0f8;
    position: relative;
  }
  
  .auth-main-card {
    padding: 36px;
    margin-bottom: 24px;
  }
  
  .auth-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: start;
  }
  
  /* ----------------------------------------------------------
     LEFT COLUMN: BENEFITS & DASHBOARD PREVIEW
     ---------------------------------------------------------- */
  .auth-benefits-col {
    padding-right: 20px;
    border-right: 1px solid #f0f4f8;
  }
  
  .benefits-title {
    font-size: clamp(1.35rem, 2vw, 1.6rem);
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 6px;
  }
  
  .benefits-title .text-gold {
    color: #d97706;
  }
  
  .benefits-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  
  .benefits-divider .line {
    width: 28px;
    height: 2px;
    background: #e1ad34;
  }
  
  .benefits-divider .diamond {
    color: #e1ad34;
    font-size: 0.6rem;
  }
  
  .benefits-subtitle {
    font-size: 0.86rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .dashboard-preview-wrapper {
    position: relative;
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  
  .preview-dots-bg {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 70px;
    height: 70px;
    background-image: radial-gradient(#d1d5db 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    pointer-events: none;
    opacity: 0.5;
  }
  
  /* Laptop Graphic */
  .laptop-graphic {
    position: relative;
    width: 210px;
  }
  
  .laptop-screen {
    background: #ffffff;
    border: 2px solid #1f2937;
    border-radius: 8px 8px 0 0;
    height: 120px;
    padding: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  
  .laptop-top-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
  }
  
  .laptop-top-bar .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }
  .dot.red { background: #ef4444; }
  .dot.yellow { background: #f59e0b; }
  .dot.green { background: #10b981; }
  
  .laptop-screen-content {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  
  .screen-chart-box {
    flex: 1;
    height: 70px;
    background: #f1f5f9;
    border-radius: 6px;
    padding: 6px;
  }
  
  .chart-svg {
    width: 100%;
    height: 100%;
  }
  
  .screen-pie-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: conic-gradient(#1a73e8 0% 65%, #dfa218 65% 100%);
  }
  
  .laptop-keyboard {
    height: 10px;
    background: #1f2937;
    border-radius: 0 0 10px 10px;
    position: relative;
  }
  
  .laptop-keyboard::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 3px;
    background: #4b5563;
    border-radius: 2px;
  }
  
  .preview-accessories .plant-pot {
    position: absolute;
    left: 12px;
    bottom: 20px;
    color: #10b981;
    font-size: 1.4rem;
  }
  
  .preview-accessories .pencil-stand {
    position: absolute;
    left: 28px;
    bottom: 22px;
    color: #4b5563;
    font-size: 0.9rem;
  }
  
  .preview-accessories .stacked-books-mini {
    position: absolute;
    right: 14px;
    bottom: 20px;
    width: 34px;
    height: 24px;
    background: #1a73e8;
    border-radius: 3px;
    box-shadow: 0 -4px 0 #dfa218, 0 -8px 0 #10b981;
  }
  
  /* Feature List Bullets */
  .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.86rem;
    color: #374151;
    font-weight: 500;
  }
  
  .benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
  }
  
  .benefit-icon--blue { background: #eef5ff; color: #1a73e8; }
  .benefit-icon--gold { background: #fef6e7; color: #d97706; }
  .benefit-icon--green { background: #eaf8ef; color: #10b981; }
  .benefit-icon--purple { background: #f3e8ff; color: #8b5cf6; }
  
  /* ----------------------------------------------------------
     RIGHT COLUMN: FORM STYLES
     ---------------------------------------------------------- */
  .auth-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .auth-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a73e8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .auth-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
  }
  
  .auth-card-desc {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
  }
  
  /* Form Layout Grid */
  .form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .ht-form-group {
    margin-bottom: 16px;
  }
  
  .ht-label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
  }
  
  .optional-text {
    font-size: 0.76rem;
    color: #1a73e8;
    font-weight: 500;
  }
  
  .input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .input-icon {
    position: absolute;
    left: 14px;
    color: #9ca3af;
    font-size: 0.88rem;
    pointer-events: none;
  }
  
  .toggle-password {
    position: absolute;
    right: 14px;
    color: #9ca3af;
    font-size: 0.88rem;
    cursor: pointer;
    padding: 4px;
  }
  
  .toggle-password:hover {
    color: #374151;
  }
  
  .ht-input {
    width: 100%;
    padding: 11px 36px 11px 40px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #111827;
    background-color: #ffffff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }
  
  .ht-input::placeholder {
    color: #9ca3af;
  }
  
  .ht-input:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
  }
  
  .ht-input.is-invalid {
    border-color: #ef4444;
  }
  
  .ht-form-error {
    display: block;
    font-size: 0.78rem;
    color: #ef4444;
    margin-top: 4px;
  }
  
  /* Checkbox Style */
  .checkbox-group {
    margin-top: 4px;
    margin-bottom: 18px;
  }
  
  .ht-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
  }
  
  .ht-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: #1a73e8;
  }
  
  .checkbox-text {
    font-size: 0.82rem;
    color: #4b5563;
    line-height: 1.4;
  }
  
  .checkbox-text a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
  }
  
  .checkbox-text a:hover {
    text-decoration: underline;
  }
  
  /* Buttons */
  .ht-btn-primary {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #dfa218 0%, #c6890c 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 4px 12px rgba(218, 155, 21, 0.28);
  }
  
  .ht-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(218, 155, 21, 0.38);
  }
  
  /* Divider */
  .auth-divider {
    position: relative;
    text-align: center;
    margin: 18px 0;
  }
  
  .auth-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
  }
  
  .auth-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 10px;
    font-size: 0.76rem;
    color: #9ca3af;
  }
  
  /* Social Buttons Grid */
  .social-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
  }
  
  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #d1d5db;
    color: #374151;
    background: #ffffff;
    transition: background-color 0.15s, border-color 0.15s;
  }
  
  .social-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
  }
  
  .social-btn.facebook-btn {
    color: #1877f2;
  }
  
  .auth-footer-text {
    text-align: center;
    font-size: 0.84rem;
    color: #6b7280;
    margin-top: 16px;
    margin-bottom: 0;
  }
  
  .login-link {
    color: #1a73e8;
    font-weight: 700;
    text-decoration: none;
  }
  
  .login-link:hover {
    text-decoration: underline;
  }
  
  /* ----------------------------------------------------------
     3. BOTTOM FEATURES BAR
     ---------------------------------------------------------- */
  .auth-features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 24px;
  }
  
  .feature-col {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  
  .feature-icon--blue { background: #eef5ff; color: #1a73e8; }
  .feature-icon--gold { background: #fef6e7; color: #d97706; }
  .feature-icon--green { background: #eaf8ef; color: #10b981; }
  .feature-icon--purple { background: #f3e8ff; color: #8b5cf6; }
  
  .feature-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2px;
  }
  
  .feature-info p {
    font-size: 0.76rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.35;
  }
  
  /* ==========================================================
     RESPONSIVE BREAKPOINTS
     ========================================================== */
  
  @media (max-width: 1199.98px) {
    .auth-hero__illustration {
      display: none;
    }
  }
  
  @media (max-width: 991.98px) {
    .auth-main-card {
      padding: 28px 24px;
    }
  
    .auth-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .auth-benefits-col {
      padding-right: 0;
      border-right: none;
      border-bottom: 1px solid #f0f4f8;
      padding-bottom: 28px;
    }
  
    .auth-features-bar {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      padding: 20px;
    }
  }
  
  @media (max-width: 640px) {
    .form-row-2col,
    .social-login-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  }
  
  @media (max-width: 575.98px) {
    .container {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }
  
    .auth-hero {
      padding: 20px 0 75px;
      border-radius: 0 0 20px 20px;
    }
  
    .auth-hero__bg-dots {
      display: none;
    }
  
    .auth-content {
      margin-top: -35px;
    }
  
    .auth-main-card {
      padding: 20px 16px;
      border-radius: 16px;
    }
  
    .auth-features-bar {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 18px 16px;
    }
  
    .feature-col {
      align-items: flex-start;
    }
  }