  /* Namaa BLUE brand — aligned with namaaup.css / app-shell.css.
     Token names kept (--forest/--lime) so the rest of the file cascades. */
  :root {
    --forest:   #0E3A6B;   /* deep navy — brand panel / primary text */
    --forest-2: #0A2A4D;
    --forest-3: #07203B;
    --lime:     #7DD3FC;   /* sky blue — accent / primary action */
    --lime-2:   #4FB6EC;
    --cream:    #f7f5ee;
    --ink:      #0E1F18;
    --muted:    #6B7770;
    --border:   #DDD9CE;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; height: 100%; }
  body {
    font-family: 'Cairo', sans-serif;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
  }

  /* ── Layout ───────────────────────────────────────── */
  .login-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }

  /* ── Brand panel ──── */
  .brand-panel {
    position: relative;
    background: var(--forest);
    color: #fff;
    padding: 56px 64px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
  }

  .brand-panel::before,
  .brand-panel::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .brand-panel::before {
    width: 520px; height: 520px;
    background: var(--forest-2);
    right: -180px; top: -160px;
  }
  .brand-panel::after {
    width: 180px; height: 180px;
    background: var(--lime);
    opacity: 0.85;
    left: -50px; bottom: -50px;
  }

  .brand-dot {
    position: absolute;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--lime);
    right: 80px; bottom: 110px;
    z-index: 1;
  }

  .brand-mark {
    width: 84px; height: 84px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--forest);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 72px;
    line-height: 1;
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  }

  .brand-content {
    position: relative;
    z-index: 2;
  }

  .brand-eyebrow {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 14px;
    font-weight: 500;
  }

  .brand-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 18px;
  }

  .brand-sub {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.85;
    max-width: 460px;
    margin: 0;
  }

  .brand-foot {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
  }
  .brand-foot .copy {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.55;
  }
  .brand-foot .year {
    font-size: 28px;
    font-weight: 700;
    color: var(--lime);
    line-height: 1;
  }

  /* ── Form panel ──── */
  .form-panel {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px;
  }

  .form-card {
    width: 100%;
    max-width: 420px;
  }

  .form-eyebrow {
    color: var(--forest);
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .form-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.2;
  }

  .form-sub {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0 0 32px;
  }

  .field {
    margin-bottom: 18px;
  }

  .field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 7px;
  }

  .input-wrap {
    position: relative;
    display: flex;
    align-items: center;
  }
  .input-wrap > i {
    position: absolute;
    right: 14px;
    font-size: 18px;
    color: var(--muted);
    pointer-events: none;
  }
  .input-wrap > .toggle-pwd {
    position: absolute;
    left: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 18px;
    padding: 4px;
    line-height: 1;
  }
  .input-wrap > .toggle-pwd:hover { color: var(--forest); }

  input[type="text"],
  input[type="email"],
  input[type="password"] {
    width: 100%;
    padding: 13px 44px 13px 44px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 14.5px;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
  }
  input::placeholder { color: #b0b6b3; }
  input:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(30,90,168,0.12);
  }

  .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0 24px;
    font-size: 13.5px;
  }

  .remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    cursor: pointer;
    user-select: none;
  }
  .remember input {
    appearance: none;
    width: 18px; height: 18px;
    border: 1.5px solid var(--border);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    transition: all 0.15s;
  }
  .remember input:checked {
    background: var(--forest);
    border-color: var(--forest);
  }
  .remember input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--lime);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
  }

  .link {
    color: var(--forest);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
  }
  .link:hover { color: var(--forest-2); text-decoration: underline; }

  .btn-primary {
    width: 100%;
    padding: 14px 24px;
    background: var(--lime);
    color: var(--forest);
    border: none;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.15s, transform 0.05s;
  }
  .btn-primary:hover { background: var(--lime-2); }
  .btn-primary:active { transform: translateY(1px); }
  .btn-primary .arrow {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--lime);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: transform 0.15s;
  }
  .btn-primary:hover .arrow { transform: translateX(-3px); }

  .divider {
    text-align: center;
    margin: 28px 0 18px;
    position: relative;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.15em;
  }
  .divider::before {
    content: '';
    position: absolute;
    top: 50%; right: 0; left: 0;
    height: 1px;
    background: var(--border);
  }
  .divider span {
    position: relative;
    background: #fff;
    padding: 0 14px;
  }

  .help-line {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
  }
  .help-line a { color: var(--forest); font-weight: 600; text-decoration: none; }
  .help-line a:hover { text-decoration: underline; }

  .login-error {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(220,38,38,0.08);
    border: 1px solid rgba(220,38,38,0.30);
    color: #B91C1C;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 16px;
  }
  .login-error.show { display: flex; }
  .login-error i { font-size: 17px; }

  /* ── Responsive ───────────────────────────────────── */
  @media (max-width: 880px) {
    .login-shell { grid-template-columns: 1fr; }
    .brand-panel {
      padding: 40px 32px;
      min-height: auto;
    }
    .brand-title { font-size: 38px; }
    .brand-sub { font-size: 15px; }
    .form-panel { padding: 40px 24px; }
    .brand-dot { display: none; }
  }
