    /* ==========================================================
       1. GLAMOUR COLOR SYSTEM & VARIABLES
       ========================================================== */
    :root {
      --bg-black: #ffffff;
      --primary: #1499e6;
      --gold: #e8bf5a;
      --white: #061221;
      --text-muted: rgba(6, 18, 33, 0.62);
      --surface: rgba(20,153,230,0.05);
      --border: rgba(20, 153, 230, 0.16);
      --font-main: 'Inter', sans-serif;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html, body { width: 100%; height: 100%; overflow-x: hidden; }
    
    body { 
      font-family: var(--font-main); 
      background:
        radial-gradient(circle at top left, rgba(20, 153, 230, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(232, 191, 90, 0.16), transparent 24%),
        var(--bg-black);
      color: var(--white); 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      min-height: 100vh; 
      padding: 20px;
      position: relative;
    }

    /* ==========================================================
       2. BLURRED BACKGROUND IMAGE
       ========================================================== */
    .global-bg-image {
      position: fixed; 
      top: 0; left: 0; width: 100%; height: 100%;
      background: url('https://glamourafrican.top/glamour.jpg') no-repeat center center;
      background-size: cover;
      z-index: -2;
    }
    
    /* Fallback gradient in case image is missing */
    .global-bg-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 50%, #ffffff 100%);
      z-index: -1;
    }

    .global-glass-overlay {
      position: fixed; 
      top: 0; left: 0; width: 100%; height: 100%;
      background: rgba(255, 255, 255, 0.68); 
      z-index: -1;
      backdrop-filter: blur(25px);
      -webkit-backdrop-filter: blur(25px);
    }

    /* ==========================================================
       3. LOGIN CARD 
       ========================================================== */
    .login-container {
      width: 100%;
      max-width: 440px;
      background: rgba(255, 255, 255, 0.92);
      border-radius: 28px;
      padding: 40px 32px; 
      box-shadow: 0 25px 60px rgba(20, 153, 230, 0.14), 0 0 40px rgba(20, 153, 230, 0.08);
      border: 1px solid var(--border);
      position: relative;
      z-index: 10;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      overflow: hidden;
    }

    /* Top Gradient Border Effect */
    .login-container::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--primary), var(--gold), transparent);
      opacity: 0.6;
    }

    /* Logo Area */
    .brand-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px; 
      text-decoration: none;
    }
    .brand-logo-icon {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--primary), var(--gold));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      font-weight: 900;
      color: #000;
      box-shadow: 0 8px 20px rgba(20, 153, 230, 0.2);
    }
    .brand-logo img {
      display: block;
      height: 140px; 
      width: auto;
      max-width: 390px;
      object-fit: contain;
    }

    /* Typography */
    .page-title {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--white);
      text-align: center;
      margin-bottom: 4px;
      letter-spacing: -1px;
    }
    .page-subtitle {
      font-size: 0.9rem;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 30px; 
      font-weight: 500;
    }

    /* Error Alert */
    .alert-box {
      background: rgba(255, 77, 77, 0.08);
      border: 1px solid rgba(255, 77, 77, 0.2);
      color: #ff4d4d;
      padding: 14px 16px;
      border-radius: 14px;
      margin-bottom: 24px;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 600;
    }
    .alert-box i { font-size: 1.1rem; }

    /* Form Elements */
    .form-group {
      margin-bottom: 20px;
      position: relative;
    }
    .form-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--text-muted);
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .form-control {
      width: 100%;
      padding: 16px;
      background: var(--surface);
      border: 2px solid var(--border);
      border-radius: 16px;
      font-family: var(--font-main);
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--white);
      transition: all 0.3s ease;
    }
    .form-control:focus {
      outline: none;
      background: rgba(20, 153, 230, 0.03);
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(20, 153, 230, 0.1);
    }
    .form-control::placeholder {
      color: rgba(6, 18, 33, 0.28);
      font-weight: 400;
    }

    /* Password Toggle */
    .pass-toggle {
      position: absolute;
      right: 16px;
      top: 42px;
      background: none;
      border: none;
      color: var(--text-muted);
      cursor: pointer;
      font-size: 1rem;
      padding: 4px;
      transition: color 0.3s;
    }
    .pass-toggle:hover { color: var(--primary); }

    /* Links */
    .reset-link {
      display: block;
      text-align: right;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      margin-bottom: 28px;
      transition: 0.2s;
    }
    .reset-link:hover { color: var(--gold); }

    /* Submit Button */
    .btn-submit {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, #fff9e8 0%, var(--gold) 45%, var(--primary) 100%);
      color: #000;
      border: none;
      border-radius: 16px;
      font-family: var(--font-main);
      font-size: 1.05rem;
      font-weight: 900;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 10px 30px rgba(20, 153, 230, 0.2);
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 35px rgba(232, 191, 90, 0.26), 0 14px 35px rgba(20, 153, 230, 0.22);
    }
    .btn-submit:active {
      transform: scale(0.98);
    }

    /* Footer */
    .form-footer {
      text-align: center;
      margin-top: 30px;
      font-size: 0.9rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .form-footer a {
      color: var(--primary);
      font-weight: 800;
      text-decoration: none;
      transition: color 0.2s;
    }
    .form-footer a:hover { color: var(--gold); }

    /* ==========================================================
       4. RENEW / ACTIVATE PROMPT 
       ========================================================== */
    .renew-prompt {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      animation: fadeIn 0.4s ease;
    }
    .renew-prompt.active { display: flex; }
    @keyframes fadeIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }
    
    .renew-icon {
      width: 80px;
      height: 80px;
      background: rgba(255, 215, 0, 0.08);
      border: 1px solid rgba(255, 215, 0, 0.2);
      color: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin-bottom: 24px;
    }
    .renew-prompt h3 {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .renew-prompt p {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 30px;
      line-height: 1.6;
    }
    .btn-renew {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, var(--gold), #f5d77d);
      color: #000;
      border: none;
      border-radius: 16px;
      font-family: var(--font-main);
      font-weight: 900;
      font-size: 1rem;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
      transition: all 0.3s ease;
      margin-bottom: 24px;
    }
    .btn-renew:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 35px rgba(255, 215, 0, 0.3);
    }
    .back-btn {
      font-size: 0.85rem;
      color: var(--text-muted);
      text-decoration: none;
      font-weight: 600;
      transition: 0.2s;
    }
    .back-btn:hover { color: var(--primary); }

    /* Responsive */
    @media (max-width: 480px) {
      .login-container { padding: 30px 20px; }
      .page-title { font-size: 1.5rem; }
    }

/* Extracted inline utilities */
.u-login-001 { display:none; }
