   /* ── LOGIN-SPECIFIC OVERRIDES ─────────────────────────── */
    body {
      display: flex;
      min-height: 100vh;
      background: var(--bg);
      align-items: stretch;
    }

    /* ── SPLIT LAYOUT ──────────────────────────────────────── */
    .login-wrapper {
      display: flex;
      width: 100%;
      min-height: 100vh;
    }

    /* ── LEFT PANEL ─────────────────────────────────────────── */
    .login-left {
      flex: 0 0 480px;
      max-width: 480px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 48px 40px;
      background: var(--surface);
      border-right: 1px solid var(--line);
      position: relative;
      z-index: 2;
    }

    /* decorative glow blobs */
    .login-left::before {
      content: '';
      position: absolute;
      top: -80px; left: -80px;
      width: 300px; height: 300px;
      background: radial-gradient(circle, color-mix(in oklab, var(--magenta) 20%, transparent), transparent 70%);
      pointer-events: none;
    }
    .login-left::after {
      content: '';
      position: absolute;
      bottom: -60px; right: -60px;
      width: 260px; height: 260px;
      background: radial-gradient(circle, color-mix(in oklab, var(--cyan) 15%, transparent), transparent 70%);
      pointer-events: none;
    }

    /* ── LOGO ─────────────────────────────────────────────── */
    .login-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 36px;
    }
    .login-logo {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--grad-brand);
      display: grid; place-items: center;
      font-weight: 900; font-size: 22px; color: #fff;
      box-shadow: 0 8px 28px color-mix(in oklab, var(--magenta) 45%, transparent);
      flex-shrink: 0;
    }
    .login-brand-text {
      display: flex;
      flex-direction: column;
    }
    .login-brand-name {
      font-size: 20px; font-weight: 800;
      background: var(--grad-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.1;
    }
    .login-brand-sub {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* ── FORM CONTAINER ─────────────────────────────────────── */
    .login-box {
      width: 100%;
      max-width: 380px;
      position: relative;
      z-index: 1;
    }

    /* ── TABS ─────────────────────────────────────────────── */
    .login-tabs {
      display: flex;
      background: var(--surface-2);
      border: 1px solid var(--line);
      border-radius: var(--r-lg);
      padding: 4px;
      margin-bottom: 28px;
      gap: 4px;
    }
    .login-tab {
      flex: 1;
      padding: 9px 12px;
      border-radius: var(--r-md);
      background: transparent;
      border: none;
      color: var(--muted);
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: background .2s, color .2s, box-shadow .2s;
      text-align: center;
    }
    .login-tab.active {
      background: var(--surface);
      color: var(--text);
      box-shadow: 0 2px 10px rgba(0,0,0,.18);
    }
    .login-tab.active[data-tab="admin"] {
      color: var(--cyan);
      box-shadow: 0 2px 10px color-mix(in oklab, var(--cyan) 25%, transparent);
    }
    .login-tab.active[data-tab="colaborador"] {
      color: var(--magenta);
      box-shadow: 0 2px 10px color-mix(in oklab, var(--magenta) 25%, transparent);
    }

    /* ── FORM PANELS ─────────────────────────────────────── */
    .login-panel { display: none; }
    .login-panel.active { display: block; }

    /* ── INPUT ICONS ─────────────────────────────────────── */
    .input-icon-wrap {
      position: relative;
    }
    .input-icon-wrap svg {
      position: absolute;
      left: 12px; top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      pointer-events: none;
    }
    .input-icon-wrap .form-control {
      padding-left: 38px;
    }
    .input-icon-wrap .toggle-pw {
      position: absolute;
      right: 12px; top: 50%;
      transform: translateY(-50%);
      background: none; border: none;
      color: var(--muted); cursor: pointer;
      font-size: 16px; padding: 2px 4px;
    }
    .input-icon-wrap .toggle-pw:hover { color: var(--cyan); }

    /* ── FORM TITLE ─────────────────────────────────────── */
    .form-heading {
      font-size: 22px; font-weight: 800;
      margin-bottom: 6px;
    }
    .form-sub {
      font-size: 13px; color: var(--muted);
      margin-bottom: 24px;
    }

    /* ── REMEMBER ROW ────────────────────────────────────── */
    .form-row-flex {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 20px;
    }
    .check-label {
      display: flex; align-items: center; gap: 7px;
      font-size: 12px; color: var(--muted); cursor: pointer;
    }
    .check-label input[type="checkbox"] {
      accent-color: var(--cyan);
      width: 15px; height: 15px;
    }
    .link-btn {
      background: none; border: none;
      color: var(--cyan); font-size: 12px; font-weight: 600;
      cursor: pointer; padding: 0;
      transition: color .18s;
    }
    .link-btn:hover { color: var(--cyan-2); text-decoration: underline; }

    /* ── LOGIN BTN ──────────────────────────────────────── */
    .btn-login {
      width: 100%;
      padding: 13px;
      font-size: 14px; font-weight: 700;
      border-radius: var(--r-md);
      background: var(--grad-brand);
      color: #fff; border: none;
      cursor: pointer;
      box-shadow: 0 5px 20px color-mix(in oklab, var(--magenta) 38%, transparent);
      transition: opacity .2s, transform .12s, box-shadow .2s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
      margin-bottom: 16px;
    }
    .btn-login:hover { opacity: .9; }
    .btn-login:active { transform: scale(.98); }
    .btn-login.loading { opacity: .7; pointer-events: none; }

    /* ── SECONDARY ACTIONS ──────────────────────────────── */
    .secondary-actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .btn-secondary-action {
      width: 100%;
      padding: 10px;
      border-radius: var(--r-md);
      background: transparent;
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px; font-weight: 600;
      cursor: pointer;
      transition: background .18s, border-color .18s, color .18s;
      display: flex; align-items: center; justify-content: center; gap: 7px;
    }
    .btn-secondary-action:hover {
      background: var(--surface-2);
      border-color: var(--cyan);
      color: var(--text);
    }

    /* ── DIVIDER WITH TEXT ──────────────────────────────── */
    .divider-or {
      display: flex; align-items: center; gap: 12px;
      margin: 16px 0;
      color: var(--muted); font-size: 12px;
    }
    .divider-or::before, .divider-or::after {
      content: ''; flex: 1; height: 1px; background: var(--line);
    }

    /* ── ERROR BOX ──────────────────────────────────────── */
    .login-error {
      background: color-mix(in oklab, var(--danger) 12%, transparent);
      border: 1px solid color-mix(in oklab, var(--danger) 40%, transparent);
      border-radius: var(--r-md);
      padding: 10px 14px;
      color: var(--danger);
      font-size: 13px;
      margin-bottom: 16px;
      display: none;
    }
    .login-error.show { display: flex; align-items: center; gap: 8px; }

    /* ── RIGHT PANEL ─────────────────────────────────────── */
    .login-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 48px 48px;
      background: var(--bg);
      position: relative;
      overflow: hidden;
    }

    /* decorative mesh grid */
    .login-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
      background-size: 40px 40px;
      opacity: .35;
      pointer-events: none;
    }

    /* ── THEME TOGGLE (top-right) ─────────────────────────── */
    .login-theme-btn {
      position: fixed;
      top: 20px; right: 24px;
      width: 42px; height: 42px;
      border-radius: var(--r-md);
      background: var(--surface);
      border: 1px solid var(--line);
      display: grid; place-items: center;
      font-size: 18px;
      cursor: pointer;
      z-index: 100;
      transition: background .2s, border-color .2s, transform .12s;
      box-shadow: var(--elev);
    }
    .login-theme-btn:hover {
      background: var(--surface-2);
      border-color: var(--cyan);
      transform: scale(1.05);
    }

    /* ── RIGHT CONTENT ─────────────────────────────────────── */
    .right-content {
      position: relative;
      z-index: 1;
      max-width: 580px;
    }
    .right-tag {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 5px 12px; border-radius: 99px;
      background: color-mix(in oklab, var(--cyan) 12%, transparent);
      border: 1px solid color-mix(in oklab, var(--cyan) 35%, transparent);
      color: var(--cyan); font-size: 11px; font-weight: 700;
      letter-spacing: .5px; text-transform: uppercase;
      margin-bottom: 20px;
    }
    .right-title {
      font-size: 34px; font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
    }
    .right-title span {
      background: var(--grad-brand);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .right-sub {
      font-size: 14px; color: var(--muted);
      line-height: 1.65;
      margin-bottom: 36px;
    }

    /* ── NEWS CARDS ─────────────────────────────────────────── */
    .news-section-title {
      font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .8px;
      color: var(--muted); margin-bottom: 14px;
    }
    .news-list {
      display: flex; flex-direction: column; gap: 12px;
      margin-bottom: 36px;
    }
    .news-card {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 18px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--r-md);
      transition: border-color .2s, box-shadow .2s;
    }
    .news-card:hover { border-color: var(--cyan); box-shadow: var(--elev); }
    .news-icon {
      width: 38px; height: 38px; border-radius: var(--r-sm);
      display: grid; place-items: center;
      font-size: 18px; flex-shrink: 0;
    }
    .news-icon.cyan   { background: color-mix(in oklab, var(--cyan) 14%, transparent); }
    .news-icon.mag    { background: color-mix(in oklab, var(--magenta) 14%, transparent); }
    .news-icon.purple { background: color-mix(in oklab, var(--purple) 14%, transparent); }
    .news-icon.ok     { background: color-mix(in oklab, var(--ok) 14%, transparent); }
    .news-card-title  { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
    .news-card-desc   { font-size: 12px; color: var(--muted); line-height: 1.5; }
    .news-card-date   { font-size: 11px; color: var(--muted); margin-top: 5px; }

    /* ── HELP SECTION ─────────────────────────────────────── */
    .help-section {
      display: flex; gap: 10px;
      flex-wrap: wrap;
    }
    .help-chip {
      display: flex; align-items: center; gap: 7px;
      padding: 8px 14px; border-radius: 99px;
      background: var(--surface);
      border: 1px solid var(--line);
      color: var(--muted); font-size: 12px; font-weight: 600;
      cursor: pointer;
      transition: background .18s, border-color .18s, color .18s;
    }
    .help-chip:hover {
      background: var(--surface-2);
      border-color: var(--cyan);
      color: var(--text);
    }

    /* ── VERSION BADGE ─────────────────────────────────────── */
    .version-badge {
      margin-top: auto;
      padding-top: 36px;
      font-size: 11px; color: var(--muted);
      display: flex; align-items: center; gap: 8px;
    }
    .version-badge::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--grad-brand);
      border-radius: 99px;
    }

    /* ── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 860px) {
      .login-right { display: none; }
      .login-left { flex: 1; max-width: 100%; border-right: none; }
    }