* { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Poppins', sans-serif;
      min-height: 100vh;
      background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    /* ─── CARD ─── */
    .login-card {
      display: flex;
      width: 100%;
      max-width: 900px;
      min-height: 540px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    }

    /* ─── LEFT PANEL ─── */
    .login-left {
      width: 44%;
      background: linear-gradient(135deg, #6C63FF 0%, #302b63 60%, #24243e 100%);
      padding: 48px 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .login-left::before {
      content: '';
      position: absolute;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      top: -80px; left: -80px;
    }
    .login-left::after {
      content: '';
      position: absolute;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      bottom: -60px; right: -60px;
    }
    .logo-icon {
      width: 64px; height: 64px;
      background: rgba(255,255,255,0.15);
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      margin-bottom: 28px;
      backdrop-filter: blur(10px);
    }
    .login-left h1 {
      font-size: 26px; font-weight: 800;
      line-height: 1.3; margin-bottom: 12px;
    }
    .login-left p {
      font-size: 13px; opacity: 0.8; line-height: 1.7;
      margin-bottom: 28px;
    }
    .feature-list { list-style: none; }
    .feature-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 13px; margin-bottom: 12px; opacity: 0.9;
    }
    .feature-list li i {
      width: 28px; height: 28px;
      background: rgba(255,255,255,0.15);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; flex-shrink: 0;
    }
    .reg-link {
      margin-top: 32px;
      font-size: 13px; opacity: 0.85;
    }
    .reg-link a { color: #FFD93D; font-weight: 600; text-decoration: none; }
    .reg-link a:hover { text-decoration: underline; }

    /* ─── RIGHT PANEL ─── */
    .login-right {
      flex: 1;
      background: #13111a;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .login-right h2 {
      font-size: 24px; font-weight: 700;
      color: #e2e8f0; margin-bottom: 6px;
    }
    .login-right .sub-text {
      font-size: 13px; color: #94a3b8; margin-bottom: 32px;
    }

    /* ─── ALERTS ─── */
    .alert-success, .alert-danger {
      padding: 12px 16px;
      border-radius: 10px;
      font-size: 13px; font-weight: 500;
      margin-bottom: 22px;
      display: flex; align-items: center; gap: 10px;
    }
    .alert-success { background: rgba(0,201,167,0.1); border: 1px solid rgba(0,201,167,0.3); color: #00C9A7; }
    .alert-danger  { background: rgba(255,107,107,0.1); border: 1px solid rgba(255,107,107,0.3); color: #FF6B6B; }

    /* ─── FIELD ─── */
    .field-wrap { margin-bottom: 20px; }
    .field-wrap label {
      display: block;
      font-size: 11px; font-weight: 600;
      color: #94a3b8; text-transform: uppercase;
      letter-spacing: 1px; margin-bottom: 8px;
    }
    .input-icon-wrap { position: relative; }
    .input-icon-wrap i {
      position: absolute; left: 14px;
      top: 50%; transform: translateY(-50%);
      color: #6C63FF; font-size: 15px;
      pointer-events: none;
    }
    .input-icon-wrap .toggle-pass {
      left: auto; right: 14px;
      color: #64748b; cursor: pointer;
      pointer-events: all;
    }
    .input-icon-wrap input {
      width: 100%;
      padding: 12px 14px 12px 42px;
      border-radius: 12px;
      background: #1e1b2e;
      border: 1px solid #2d2b40;
      color: #e2e8f0;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      outline: none;
      transition: all 0.3s ease;
    }
    .input-icon-wrap input:focus {
      border-color: rgba(108,99,255,0.6);
      box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
    }
    .input-icon-wrap input::placeholder { color: #4b5563; }

    /* ─── FORGOT ─── */
    .forgot-row {
      text-align: right;
      margin-bottom: 24px;
      margin-top: -10px;
    }
    .forgot-row a {
      font-size: 12px; color: #6C63FF;
      text-decoration: none; font-weight: 500;
    }
    .forgot-row a:hover { text-decoration: underline; }

    /* ─── BUTTON ─── */
    .btn-login {
      width: 100%; padding: 13px;
      border-radius: 12px;
      background: linear-gradient(135deg, #6C63FF, #3B82F6);
      color: #fff; font-size: 15px; font-weight: 700;
      border: none; cursor: pointer;
      transition: all 0.3s ease;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-login:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(108,99,255,0.4);
    }

    /* ─── DIVIDER ─── */
    .divider {
      display: flex; align-items: center; gap: 12px;
      margin: 22px 0; color: #374151; font-size: 12px;
    }
    .divider::before, .divider::after {
      content: ''; flex: 1; border-top: 1px solid #2d2b40;
    }

    /* ─── MARQUEE NOTICE ─── */
    .notice-ticker {
      background: rgba(108,99,255,0.12);
      border: 1px solid rgba(108,99,255,0.25);
      border-radius: 8px;
      padding: 8px 12px;
      margin-bottom: 22px;
      font-size: 12px; color: #a78bfa;
      font-weight: 500;
      display: flex; align-items: center; gap: 8px;
      overflow: hidden;
    }
    .notice-ticker i { flex-shrink: 0; }
    .notice-ticker marquee { flex: 1; }

    /* ─── SESSION CONFLICT BANNER ─── */
    .session-alert {
      background: rgba(251,191,36,0.1);
      border: 1px solid rgba(251,191,36,0.4);
      border-radius: 10px;
      padding: 12px 16px;
      font-size: 13px;
      color: #fbbf24;
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 640px) {
      .login-card { flex-direction: column; }
      .login-left { width: 100%; padding: 32px 24px; }
      .login-right { padding: 28px 20px; }
    }