    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:    #2E3A7C;
      --navy-2:  #1C2657;
      --sky:     #4AABCF;
      --sky-lt:  #7ECAE0;
      --white:   #FFFFFF;
      --text:    #1A2340;
      --muted:   #8491B2;
      --border:  #DDE4F0;
      --bg-card: rgba(255,255,255,0.82);
    }

    /* ── PAGE ── */
    html, body {
      height: 100%;
      font-family: 'DM Sans', sans-serif;
    }

    body {
      min-height: 100vh;
      background: var(--navy-2);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    /* ── ANIMATED TICKET PIPELINE BACKGROUND ── */
    .bg-canvas {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    /* Floating ticket cards */
    .tk {
      position: absolute;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(74,171,207,0.15);
      border-radius: 8px;
      padding: 10px 14px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      animation: float-up linear infinite;
      backdrop-filter: blur(2px);
    }
    .tk-id   { font-size: 9px; font-family: monospace; color: var(--sky-lt); opacity: 0.7; letter-spacing: 1px; }
    .tk-bar  { height: 5px; border-radius: 3px; background: rgba(74,171,207,0.3); }
    .tk-bar2 { height: 4px; width: 60%; border-radius: 3px; background: rgba(74,171,207,0.15); }
    .tk-dot  {
      width: 7px; height: 7px; border-radius: 50%;
      position: absolute; top: 10px; right: 10px;
    }

    @keyframes float-up {
      0%   { transform: translateY(110vh) rotate(-2deg); opacity: 0; }
      5%   { opacity: 1; }
      90%  { opacity: 0.6; }
      100% { transform: translateY(-20vh) rotate(3deg); opacity: 0; }
    }

    /* Horizontal pipeline lines */
    .pipe-line {
      position: absolute;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(74,171,207,0.2), transparent);
      left: 0; right: 0;
      animation: scan linear infinite;
    }
    @keyframes scan {
      0%   { top: 110%; opacity: 0; }
      5%   { opacity: 1; }
      95%  { opacity: 0.5; }
      100% { top: -10%; opacity: 0; }
    }

    /* Radial glow behind card */
    .bg-glow {
      position: fixed;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(74,171,207,0.12) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 0;
    }

    /* ── TOP BRAND BAR ── */
    .top-bar {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 36px;
    }

    .diamond-wrap {
      position: relative;
      width: 44px; height: 44px;
      flex-shrink: 0;
    }
    .d-back {
      position: absolute;
      width: 34px; height: 34px;
      background: var(--navy);
      border: 1.5px solid rgba(74,171,207,0.4);
      border-radius: 5px;
      transform: rotate(45deg);
      top: 5px; left: 0;
    }
    .d-front {
      position: absolute;
      width: 34px; height: 34px;
      background: var(--sky);
      border-radius: 5px;
      transform: rotate(45deg);
      top: 3px; left: 7px;
      display: flex; align-items: center; justify-content: center;
    }
    .d-front span {
      transform: rotate(-45deg);
      color: white;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 18px; font-weight: 700;
    }

    .brand-text {
      display: flex; flex-direction: column; line-height: 1;
    }
    .brand-text .t1 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700; font-size: 27px;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--white);
    }
    .brand-text .t2 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700; font-size: 27px;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--sky);
    }

    /* ── LOGIN CARD ── */
    .card {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 440px;
      background: var(--bg-card);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow:
        0 2px 0 rgba(255,255,255,0.8) inset,
        0 24px 64px rgba(10,16,50,0.45),
        0 4px 16px rgba(74,171,207,0.12);
      overflow: hidden;
    }

    /* Coloured top accent strip */
    .card-accent {
      height: 4px;
      background: linear-gradient(90deg, var(--navy) 0%, var(--sky) 50%, var(--sky-lt) 100%);
    }

    .card-body { padding: 36px 40px 40px; }

    /* ── Ticket tally — signature element ── */
    .tally-row {
      display: flex;
      gap: 10px;
      margin-bottom: 32px;
    }
    .tally {
      flex: 1;
      background: #F0F6FA;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 14px;
      display: flex;
      flex-direction: column;
      gap: 2px;
      position: relative;
      overflow: hidden;
    }
    .tally::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
    }
    .tally.open::after   { background: #F59E0B; }
    .tally.prog::after   { background: var(--sky); }
    .tally.closed::after { background: #22C55E; }

    .tally-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px; font-weight: 700;
      color: var(--text); line-height: 1;
    }
    .tally-lbl {
      font-size: 11px; color: var(--muted);
      font-weight: 500; letter-spacing: 0.3px;
    }

    /* ── Form header ── */
    .form-head { margin-bottom: 24px; }
    .form-head h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 26px; font-weight: 700;
      color: var(--text); margin-bottom: 4px;
    }
    .form-head p { font-size: 13px; color: var(--muted); }

    /* ── Fields ── */
    .field { margin-bottom: 16px; }
    .field label {
      display: block;
      font-size: 12px; font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
      letter-spacing: 0.2px;
    }
    .field-inner { position: relative; }
    .field-inner svg.ico {
      position: absolute; left: 13px; top: 50%;
      transform: translateY(-50%);
      width: 15px; height: 15px;
      color: var(--muted); pointer-events: none;
    }
    .field-inner input {
      width: 100%;
      padding: 11px 13px 11px 38px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: white;
      outline: none;
      transition: border-color 0.18s, box-shadow 0.18s;
    }
    .field-inner input::placeholder { color: #BCC6DA; }
    .field-inner input:focus {
      border-color: var(--sky);
      box-shadow: 0 0 0 3px rgba(74,171,207,0.14);
    }
    .eye-btn {
      position: absolute; right: 12px; top: 50%;
      transform: translateY(-50%);
      background: none; border: none;
      cursor: pointer; color: var(--muted);
      display: flex; align-items: center; padding: 0;
    }
    .eye-btn:hover { color: var(--sky); }

    /* ── Meta row ── */
    .meta-row {
      display: flex; align-items: center;
      justify-content: space-between;
      margin: 6px 0 24px;
    }
    .chk-label {
      display: flex; align-items: center;
      gap: 7px; font-size: 13px;
      color: var(--muted); cursor: pointer; user-select: none;
    }
    .chk-label input[type="checkbox"] {
      appearance: none;
      width: 15px; height: 15px;
      border: 1.5px solid var(--border);
      border-radius: 4px; background: white;
      cursor: pointer; flex-shrink: 0;
      transition: background 0.15s, border-color 0.15s;
      position: relative;
    }
    .chk-label input[type="checkbox"]:checked {
      background: var(--sky); border-color: var(--sky);
    }
    .chk-label input[type="checkbox"]:checked::after {
      content: '';
      position: absolute;
      left: 3px; top: 1px;
      width: 5px; height: 8px;
      border: 2px solid white;
      border-top: none; border-left: none;
      transform: rotate(45deg);
    }
    .forgot {
      font-size: 13px; font-weight: 600;
      color: var(--sky); text-decoration: none;
    }
    .forgot:hover { color: var(--navy); }

    /* ── CTA button ── */
    .btn-submit {
      width: 100%; padding: 13px;
      background: var(--navy);
      color: white; border: none;
      border-radius: 10px;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 15px; font-weight: 600;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(46,58,124,0.35);
      position: relative;
      overflow: hidden;
    }
    .btn-submit::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(74,171,207,0.18) 0%, transparent 60%);
      pointer-events: none;
    }
    .btn-submit:hover {
      background: #253270;
      transform: translateY(-1px);
      box-shadow: 0 6px 22px rgba(46,58,124,0.42);
    }
    .btn-submit:active { transform: translateY(0); }

    /* ── Divider + SSO ── */
    .or-row {
      display: flex; align-items: center;
      gap: 12px; margin: 20px 0;
      font-size: 12px; color: var(--muted);
    }
    .or-row::before, .or-row::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

    .btn-sso {
      width: 100%; padding: 11px;
      background: white;
      color: var(--text);
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px; font-weight: 600;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center; gap: 9px;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-sso:hover { border-color: var(--sky); background: #F4FBFD; }
    .sso-chip {
      background: var(--navy);
      color: white;
      font-size: 10px; font-weight: 700;
      letter-spacing: 1px;
      padding: 2px 7px; border-radius: 4px;
      font-family: 'Space Grotesk', sans-serif;
    }

    /* ── Footer ── */
    .card-footer-txt {
      text-align: center;
      margin-top: 22px;
      font-size: 13px; color: var(--muted);
      position: relative; z-index: 10;
    }
    .card-footer-txt a {
      color: var(--sky-lt); font-weight: 600; text-decoration: none;
    }
    .card-footer-txt a:hover { color: var(--white); }

    .bottom-note {
      position: relative; z-index: 10;
      margin-top: 28px;
      font-size: 11px; color: rgba(255,255,255,0.2);
      text-align: center;
    }

    /* ── Responsive ── */
    @media (max-width: 520px) {
      .card-body { padding: 28px 24px 32px; }
      .tally-num { font-size: 18px; }
    }