/* Stalex Client Portal — shared styles
   Brand-matched to main site (stalex-a2p-site/index.html)
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #14233D;
  --bg2: #1B2F4F;
  --surface: #1F3556;
  --surface-2: #253F65;
  --gold: #D4A93A;
  --gold2: #E8C879;
  --ink: #F5EFE4;
  --white: #F5EFE4;
  --muted: #7B90A8;
  --muted2: #4E5F73;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(212,169,58,0.28);
  --ok: #4ADE80;
  --warn: #F59E0B;
  --err: #F87171;
  --display: 'Cormorant', Georgia, serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --sidebar-w: 260px;
  --topbar-h: 68px;
  /* Premium shadow scale — subtle, layered, never garish */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.18);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.22), 0 1px 3px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.28), 0 2px 6px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 24px rgba(212,169,58,0.18);
}

/* Respect user motion preferences — disable hover transforms + transitions */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Subtle fade-up on initial page render. Triggers once per page load — not on
   re-fetches — so the portal feels deliberate when navigating between pages
   without being annoying on every interaction. Disabled by reduced-motion above. */
@keyframes page-enter {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.content {
  animation: page-enter 0.42s var(--ease-out) both;
}

/* Stagger the KPI cards in slightly so the entry feels orchestrated, not
   choppy. Subtle — 60ms between cards. */
@keyframes kpi-enter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
[data-kpis] > .stat-card {
  animation: kpi-enter 0.5s var(--ease-out) both;
}
[data-kpis] > .stat-card:nth-child(1) { animation-delay: 0ms; }
[data-kpis] > .stat-card:nth-child(2) { animation-delay: 60ms; }
[data-kpis] > .stat-card:nth-child(3) { animation-delay: 120ms; }
[data-kpis] > .stat-card:nth-child(4) { animation-delay: 180ms; }
a { color: var(--gold2); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 11px 14px;
  border-radius: 6px;
  width: 100%;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}

/* ---------- LAYOUT ---------- */
.portal-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}

/* ---------- SIDEBAR ---------- */
.sidebar {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  border-right: 1px solid var(--border);
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px 24px;
  border-bottom: 1px solid var(--border);
}
.sidebar-brand img { height: 36px; width: auto; }
.sidebar-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.sidebar-brand-name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--white);
  text-transform: uppercase;
}
.sidebar-brand-tag {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--gold2);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 3px;
}
.sidebar-nav {
  padding: 16px 12px;
  flex: 1;
}
.sidebar-section {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--muted2);
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 12px 8px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  margin-bottom: 2px;
}
.sidebar-nav a:hover {
  background: var(--surface);
  color: var(--white);
  text-decoration: none;
}
.sidebar-nav a.active {
  background: var(--surface);
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: 11px;
}
.sidebar-nav a .icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
}
.sidebar-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted2);
}
.sidebar-footer a { color: var(--muted); font-size: 13px; display: block; padding: 6px 0; }

/* ---------- MAIN ---------- */
.main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ---------- TOPBAR ---------- */
.topbar {
  height: var(--topbar-h);
  background: rgba(20, 35, 61, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.topbar-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.2s;
}
.topbar-icon:hover { color: var(--white); border-color: var(--border-gold); }
.topbar-icon .badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--gold);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.user-chip:hover { border-color: var(--border-gold); }
.user-chip-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* Layered backgrounds give a "polished metal" depth instead of flat saturated
     yellow. Highlight at 30%/25% mimics a top-left light source; the linear
     gradient adds a darker bottom edge. */
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.30), transparent 55%),
    linear-gradient(135deg, var(--gold) 0%, #B08D2C 100%);
  box-shadow:
    inset 0 -1px 2px rgba(0,0,0,0.18),
    0 1px 2px rgba(0,0,0,0.22);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.user-chip-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

/* ---------- CONTENT ---------- */
.content {
  padding: 32px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}
.page-head {
  margin-bottom: 28px;
}
.page-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold2);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 8px;
}
.page-title em { font-style: italic; color: var(--gold2); }
.page-lede {
  color: var(--muted);
  font-size: 15px;
  max-width: 680px;
}

/* ---------- GRID / CARDS ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  transition: border-color 0.25s var(--ease-out),
              transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
/* Cards inside the dashboard's KPI strip should not lift — they're statement objects, not interactive */
.stat-card,
.card.no-lift,
.card.no-lift:hover {
  transform: none;
  box-shadow: none;
}
.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.card-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
}
.card-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

/* stat / kpi card */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold2));
  opacity: 0.7;
}
/* Hero KPI variant — apply this class to the most important number on the
   dashboard (e.g. Total Coverage). Slightly bigger value, accent on the
   gold strip, subtle background tint. Gives the dashboard a focal point
   instead of four equal-weight cards competing for attention. */
.stat-card--hero {
  background:
    radial-gradient(ellipse at top right, rgba(212,169,58,0.08), transparent 60%),
    var(--surface);
  border-color: rgba(212,169,58,0.18);
}
.stat-card--hero::before { opacity: 1; width: 4px; }
.stat-card--hero .stat-value { font-size: 38px; }
.stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.stat-value {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
}
.stat-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

/* ---------- TOASTS ---------- */
/* Notification toast container — fixed bottom-right. portal.js adds toasts
   via window.portalToast(message, kind). Auto-dismiss after 4s.
   Use kinds: 'ok' (green), 'warn' (gold), 'err' (red), default = neutral. */
.toast-stack {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 40px);
}
.toast {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  min-width: 280px;
  max-width: 380px;
  font-size: 14px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  pointer-events: auto;
  animation: toast-in 0.3s var(--ease-out) both;
}
.toast.dismissing {
  animation: toast-out 0.25s var(--ease-out) forwards;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateX(20px); }
}
.toast-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold2);
}
.toast.toast-ok { border-color: rgba(74,222,128,0.32); }
.toast.toast-ok .toast-icon { color: var(--ok); }
.toast.toast-warn { border-color: rgba(245,158,11,0.32); }
.toast.toast-warn .toast-icon { color: var(--warn); }
.toast.toast-err { border-color: rgba(248,113,113,0.32); }
.toast.toast-err .toast-icon { color: var(--err); }
.toast-message { flex: 1; line-height: 1.45; }
.toast-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0 0 0 8px;
  font-size: 16px;
  line-height: 1;
}
.toast-close:hover { color: var(--white); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: var(--bg);
  /* Subtle inner highlight — gives the gold a metallic feel rather than a flat fill */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), var(--shadow-sm);
}
.btn-primary:hover {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), var(--shadow-gold);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--bg);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), var(--shadow-sm);
}
/* Soft gold — for secondary actions that shouldn't compete with the primary CTA.
   Use for "View documents", "Quick actions" tiles, etc. Reserve btn-primary for
   the single most-important action on a screen. */
.btn-soft {
  background: rgba(212,169,58,0.10);
  border-color: rgba(212,169,58,0.32);
  color: var(--gold2);
}
.btn-soft:hover {
  background: rgba(212,169,58,0.16);
  border-color: rgba(212,169,58,0.5);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--gold2);
}
.btn-soft:active { transform: translateY(0); }
.btn-ghost {
  background: transparent;
  border-color: var(--border-gold);
  color: var(--gold2);
}
.btn-ghost:hover {
  background: rgba(212,169,58,0.06);
  border-color: rgba(212,169,58,0.4);
  text-decoration: none;
  color: var(--gold2);
}
.btn-sm { padding: 7px 14px; font-size: 11px; letter-spacing: 1px; }
/* Subtle focus ring for keyboard users — gold halo, no heavy outline */
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,169,58,0.35);
}

/* ---------- BADGES / CHIPS ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.chip-ok { background: rgba(74, 222, 128, 0.12); color: var(--ok); }
.chip-warn { background: rgba(245, 158, 11, 0.12); color: var(--warn); }
.chip-err { background: rgba(248, 113, 113, 0.12); color: var(--err); }
.chip-muted { background: var(--bg2); color: var(--muted); }
.chip-gold { background: rgba(212, 169, 58, 0.12); color: var(--gold2); }
.dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}

/* ---------- TABLES ---------- */
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.tbl thead th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.tbl tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}
.tbl tbody tr:hover { background: rgba(255,255,255,0.02); }
.tbl tbody tr:last-child td { border-bottom: none; }

/* ---------- LIST ITEMS ---------- */
.list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.list-item:last-child { border-bottom: none; }
.list-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
  flex-shrink: 0;
}
.list-item-body { flex: 1; min-width: 0; }
.list-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.list-item-meta { font-size: 12px; color: var(--muted); }

/* ---------- FORMS ---------- */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field .hint { font-size: 12px; color: var(--muted2); }

/* ---------- ALERTS ---------- */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}
.alert-gold {
  background: rgba(212, 169, 58, 0.08);
  border-color: var(--border-gold);
  color: var(--ink);
}
.alert-warn {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.28);
  color: var(--ink);
}

/* ---------- SKELETON LOADERS ---------- */
/* Subtle shimmer that signals "data is loading" without text. Looks 10x more
   premium than "Loading..." text. Use the .skeleton class on placeholder
   blocks, sized to match the eventual content. */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(212,169,58,0.06) 50%,
    rgba(255,255,255,0.08) 60%,
    rgba(255,255,255,0.04) 100%
  );
  background-size: 800px 100%;
  animation: shimmer 1.6s linear infinite;
  border-radius: 6px;
  display: block;
}
.skeleton-line { height: 14px; margin-bottom: 10px; }
.skeleton-line.short { width: 40%; }
.skeleton-line.med { width: 65%; }
.skeleton-line.long { width: 90%; }
.skeleton-block { height: 120px; }
.skeleton-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 16px;
}

/* ---------- EMPTY STATES ---------- */
/* Replace "No documents on file" plain-text states. Icon + headline +
   muted explainer + optional CTA. Looks like a designed system, not a
   placeholder. */
.empty-state {
  text-align: center;
  padding: 48px 24px;
}
.empty-state-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,169,58,0.10), rgba(212,169,58,0.04));
  border: 1px solid var(--border-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold2);
}
.empty-state-icon svg { width: 26px; height: 26px; }
.empty-state-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.empty-state-desc {
  color: var(--muted);
  font-size: 14px;
  max-width: 380px;
  margin: 0 auto 20px;
  line-height: 1.55;
}

/* ---------- UTILS ---------- */
.hstack { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.vstack { display: flex; flex-direction: column; gap: 12px; }
.spacer { flex: 1; }
.divider { height: 1px; background: var(--border); margin: 20px 0; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ---------- MOBILE ---------- */
.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .portal-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed;
    left: 0; top: 0; bottom: 0;
    width: var(--sidebar-w);
    z-index: 50;
    transform: translateX(-100%);
    transition: transform 0.3s var(--ease);
    box-shadow: 4px 0 24px rgba(0,0,0,0.4);
  }
  .sidebar.open { transform: translateX(0); }
  .mobile-toggle { display: inline-flex; }
  .content { padding: 20px; }
  .topbar { padding: 0 16px; }
  .user-chip-name { display: none; }
}

/* ---------- ICONS (inline SVG wrapper) ---------- */
.ic { width: 18px; height: 18px; display: inline-block; vertical-align: middle; }
.ic-lg { width: 22px; height: 22px; }

/* ---------- LOGIN PAGE ---------- */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse at top, var(--bg2) 0%, var(--bg) 70%);
}
.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.login-brand {
  text-align: center;
  margin-bottom: 28px;
}
.login-brand img { height: 52px; margin-bottom: 14px; }
.login-brand-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.login-brand-tag {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold2);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}
