/* PBXpeople — design tokens + base styles.
   Family shell (matches PBXhost/PBXchange: light header + accent underline,
   1480px frame, auth choice cards) with the PBXpeople accent: CREW VIOLET.
   ALL colour on --pbx-* variables — interim until the style-guide package;
   re-skin = token swap. Spacing on an 8px rhythm. */

:root {
  /* Core palette — PBXpeople */
  --pbx-ink: #17324d;          /* family ink / headers */
  --pbx-deep: #3d2f7a;         /* deep violet — secondary */
  --pbx-action: #6a4bbc;       /* CREW VIOLET — buttons, links, accents */
  --pbx-caution: #c58a1b;      /* caution gold (family constant) */
  --pbx-success: #287a55;      /* success green (family constant) */
  --pbx-critical: #a33a3a;     /* critical red (family constant) */
  --pbx-surface: #f5f4f8;      /* page background (violet-tinged) */
  --pbx-card: #ffffff;
  --pbx-muted: #635e75;        /* muted text */
  --pbx-border: #ddd9e6;

  /* Sensitive-information states (per Sensitive Info bible) */
  --sens-masked: #635e75;
  --sens-revealed: #3d2f7a;
  --sens-restricted: #a33a3a;

  /* Rhythm */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-6: 48px;

  --radius: 8px;
  --shadow-card: 0 1px 3px rgba(61, 47, 122, 0.1);
  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-stack);
  background: var(--pbx-surface);
  color: var(--pbx-ink);
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

[hidden] {
  display: none !important;
}

h1, h2, h3 {
  margin: 0 0 var(--sp-2);
  line-height: 1.25;
}

a {
  color: var(--pbx-action);
}

.muted { color: var(--pbx-muted); }

/* ---- Header (family shell) ---- */

.pbx-header {
  background: var(--pbx-card);
  color: var(--pbx-ink);
  border-bottom: 3px solid var(--pbx-action);
  box-shadow: 0 1px 3px rgba(61, 47, 122, 0.08), 0 8px 24px rgba(61, 47, 122, 0.06);
}

.pbx-header__inner {
  width: min(1480px, calc(100vw - 4rem));
  margin: 0 auto;
  padding: var(--sp-2) var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.pbx-header__brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  min-width: 0;
}

.pbx-header__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.pbx-header .brand {
  font-size: 20px;
  font-weight: 800;
}

.pbx-header .brand span {
  color: var(--pbx-action);
}

.pbx-header .context-line {
  color: var(--pbx-muted);
  font-size: 13px;
  max-width: min(30rem, 55vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pbx-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.pbx-header .user-label {
  color: var(--pbx-muted);
  font-size: 13px;
}

.pbx-header .brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ---- Buttons & fields ---- */

.btn {
  display: inline-block;
  border: none;
  border-radius: var(--radius);
  padding: 10px var(--sp-2);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: var(--pbx-action);
  color: #fff;
  text-decoration: none;
}

.btn:hover {
  filter: brightness(1.08);
}

.btn.secondary {
  background: transparent;
  color: var(--pbx-action);
  border: 1px solid var(--pbx-action);
}

.btn.small {
  font-size: 13px;
  padding: 6px 12px;
}

.field {
  display: block;
  margin-bottom: var(--sp-2);
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--pbx-muted);
}

.field input,
.field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--pbx-border);
  border-radius: var(--radius);
  font-size: 15px;
  background: #fff;
}

.field input:focus {
  outline: 2px solid var(--pbx-action);
  outline-offset: 0;
  border-color: var(--pbx-action);
}

/* ---- Brand logo / sign-in card (family shell) ---- */

.brand-logo {
  display: block;
  border-radius: 7px;
}

.auth-card .brand-logo--large {
  margin: 0 auto var(--sp-2);
}

.auth-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
}

.auth-card {
  background: var(--pbx-card);
  border: 1px solid var(--pbx-border);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(61, 47, 122, 0.08), 0 16px 42px rgba(61, 47, 122, 0.1);
  padding: var(--sp-4);
  width: 100%;
  max-width: 430px;
}

.auth-card .product-name {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
  text-align: center;
}

.auth-card .product-name span {
  color: var(--pbx-action);
}

.auth-card .tagline {
  color: var(--pbx-muted);
  font-size: 14px;
  margin-bottom: var(--sp-3);
  text-align: center;
}

.auth-card .auth-heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 var(--sp-2);
  text-align: center;
}

.auth-card .mock-note {
  margin-top: var(--sp-2);
  font-size: 12px;
  color: var(--pbx-muted);
  text-align: center;
}

.auth-choice {
  display: grid;
  gap: 0.875rem;
  margin-top: var(--sp-2);
}

.auth-choice__card {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 0.875rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--pbx-border);
  border-radius: 14px;
  background: var(--pbx-card);
  color: var(--pbx-ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.auth-choice__card:hover,
.auth-choice__card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--pbx-action);
  background: color-mix(in srgb, var(--pbx-action) 8%, white);
  outline: none;
}

.auth-choice__card--inactive {
  cursor: default;
}

.auth-choice__card--inactive:hover,
.auth-choice__card--inactive:focus-visible {
  transform: none;
  border-color: var(--pbx-border);
  background: var(--pbx-card);
}

.auth-choice__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--pbx-action);
  background: color-mix(in srgb, var(--pbx-action) 10%, white);
}

.auth-choice__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.auth-choice__content strong {
  font-size: 1rem;
  line-height: 1.3;
}

.auth-choice__content span {
  color: var(--pbx-muted);
  font-size: 0.8125rem;
  line-height: 1.4;
}

.auth-choice__arrow {
  color: var(--pbx-action);
  font-size: 1.35rem;
}

/* ---- Sign-in intro (wordmark reveal, then options stagger in) ----
   Plays once per tab session (js/signInIntro.js sets `no-intro`). */

.auth-card .product-name--intro {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card .product-name .product-name__primary {
  color: inherit;
}

/* Zero-width clipped column: "people" slides out from behind the right edge
   of "PBX" as the column opens, pushing "PBX" left of centre. */
.product-name__reveal {
  display: grid;
  grid-template-columns: 1fr;
}

.product-name__reveal > span {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}

.brand-logo--intro {
  opacity: 0;
  animation: intro-logo-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.product-name--intro .product-name__primary {
  opacity: 0;
  animation: intro-pbx-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.product-name--intro .product-name__reveal {
  grid-template-columns: 0fr;
  animation: intro-reveal 0.8s cubic-bezier(0.77, 0, 0.18, 1) 0.95s forwards;
}

.intro-enter {
  opacity: 0;
  animation: intro-fade-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-enter--d1 {
  animation-delay: 1.7s;
}

.intro-enter--d2 {
  animation-delay: 1.82s;
}

.intro-enter--d3 {
  animation-delay: 1.96s;
}

.intro-enter--d4 {
  animation-delay: 2.1s;
}

.intro-enter--d5 {
  animation-delay: 2.24s;
}

@keyframes intro-logo-in {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes intro-pbx-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes intro-reveal {
  from {
    grid-template-columns: 0fr;
  }
  to {
    grid-template-columns: 1fr;
  }
}

@keyframes intro-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.no-intro .brand-logo--intro,
.no-intro .product-name--intro .product-name__primary,
.no-intro .intro-enter {
  animation: none;
  opacity: 1;
}

.no-intro .product-name--intro .product-name__reveal {
  animation: none;
  grid-template-columns: 1fr;
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo--intro,
  .product-name--intro .product-name__primary,
  .intro-enter {
    animation: none;
    opacity: 1;
  }

  .product-name--intro .product-name__reveal {
    animation: none;
    grid-template-columns: 1fr;
  }

  .auth-choice__card {
    transition: none;
  }
}

.auth-back {
  margin-top: var(--sp-2);
  text-align: center;
}

.auth-back button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--pbx-action);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

/* ---- Page frame + footer (family shell) ---- */

.page {
  width: min(1480px, calc(100vw - 4rem));
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-3) var(--sp-6);
  flex: 1;
}

.site-footer {
  margin-top: auto;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--pbx-muted);
  border-top: 1px solid var(--pbx-border);
  background: rgba(255, 255, 255, 0.68);
}

.site-footer p {
  margin: 0;
}

/* ---- Shared blocks ---- */

.panel-block {
  background: var(--pbx-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.panel-block h2 { font-size: 16px; margin-bottom: var(--sp-1); }

.kv-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: var(--sp-1);
  padding: 8px 0;
  border-top: 1px solid var(--pbx-surface);
  font-size: 14px;
  align-items: center;
}

.kv-label { color: var(--pbx-muted); font-weight: 600; font-size: 13px; }

.section-title {
  display: flex;
  align-items: baseline;
  gap: var(--sp-1);
  margin: var(--sp-3) 0 var(--sp-2);
}

.status-pill {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--pbx-muted);
}

.status-pill[data-status="confirmed"] { background: var(--pbx-success); }
.status-pill[data-status="pencilled"] { background: var(--pbx-caution); }
.status-pill[data-status="travel"] { background: var(--pbx-deep); }
.status-pill[data-status="complete"] { background: var(--pbx-muted); }

/* ---- Dashboard ---- */

.hero-job {
  background: linear-gradient(120deg, var(--pbx-deep), var(--pbx-action));
  color: #fff;
  border-radius: 14px;
  padding: var(--sp-3);
  margin-bottom: var(--sp-3);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
  align-items: center;
}

.hero-job__label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hero-job h2 {
  margin: 4px 0 2px;
  font-size: 22px;
  color: #fff;
}

.hero-job .sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}

.hero-job .hero-cta {
  background: #fff;
  color: var(--pbx-deep);
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.tile {
  display: block;
  background: var(--pbx-card);
  border: 1px solid var(--pbx-border);
  border-radius: 14px;
  padding: var(--sp-2);
  color: var(--pbx-ink);
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: var(--pbx-action);
}

.tile__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--pbx-action);
  background: color-mix(in srgb, var(--pbx-action) 10%, white);
  margin-bottom: var(--sp-1);
}

.tile strong { display: block; font-size: 15px; }
.tile span { color: var(--pbx-muted); font-size: 13px; }

.notice-row {
  display: flex;
  gap: var(--sp-1);
  padding: 10px 0;
  border-top: 1px solid var(--pbx-surface);
  font-size: 14px;
  align-items: baseline;
}

.notice-row time {
  color: var(--pbx-muted);
  font-size: 12px;
  white-space: nowrap;
}

.review-nudge {
  background: color-mix(in srgb, var(--pbx-caution) 12%, white);
  border-left: 4px solid var(--pbx-caution);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-2);
  margin-bottom: var(--sp-3);
  display: flex;
  justify-content: space-between;
  gap: var(--sp-2);
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

/* ---- Job page ---- */

.job-head { margin-bottom: var(--sp-2); }
.job-title { margin: 6px 0 4px; font-size: 24px; }

.job-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--sp-2);
  align-items: start;
}

@media (max-width: 900px) {
  .job-split { grid-template-columns: 1fr; }
}

.call-banner {
  background: var(--pbx-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: var(--sp-2);
  margin-bottom: var(--sp-2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-1);
  font-size: 15px;
}

.call-banner strong { font-size: 20px; }

.sched-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--sp-1);
  padding: 8px 0;
  border-top: 1px solid var(--pbx-surface);
  font-size: 14px;
}

.sched-row time {
  color: var(--pbx-action);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-1);
  padding: 10px 0;
  border-top: 1px solid var(--pbx-surface);
  font-size: 14px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: var(--sp-1);
  padding: 8px 0;
  border-top: 1px solid var(--pbx-surface);
  font-size: 14px;
  flex-wrap: wrap;
}

/* ---- My details: sensitive information (per Sensitive Info bible) ---- */

.sens-panel {
  border-left: 4px solid var(--pbx-action);
}

.sens-explain {
  background: color-mix(in srgb, var(--pbx-action) 7%, white);
  border-radius: var(--radius);
  padding: var(--sp-1) var(--sp-2);
  font-size: 13px;
  color: var(--pbx-deep);
  margin-bottom: var(--sp-1);
}

.sens-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: var(--sp-1);
  padding: 10px 0;
  border-top: 1px solid var(--pbx-surface);
  font-size: 14px;
  align-items: center;
}

.sens-value {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--sens-masked);
}

.sens-value--revealed {
  color: var(--sens-revealed);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reveal-timer {
  font-size: 12px;
  font-weight: 700;
  color: var(--pbx-caution);
  white-space: nowrap;
}

.visibility-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 1px 9px;
  margin-left: 6px;
  vertical-align: middle;
}

.visibility-tag--operational { background: color-mix(in srgb, var(--pbx-action) 12%, white); color: var(--pbx-deep); }
.visibility-tag--emergency { background: color-mix(in srgb, var(--pbx-critical) 12%, white); color: var(--pbx-critical); }
.visibility-tag--restricted { background: color-mix(in srgb, var(--pbx-muted) 15%, white); color: var(--pbx-muted); }

.retention-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-1);
  flex-wrap: wrap;
  padding: var(--sp-1) 0 0;
  font-size: 13px;
  color: var(--pbx-muted);
}

.retention-actions { display: flex; gap: var(--sp-1); flex-wrap: wrap; }

.access-log-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--sp-1);
  padding: 7px 0;
  border-top: 1px solid var(--pbx-surface);
  font-size: 13px;
}

.access-log-row time { color: var(--pbx-muted); font-size: 12px; }

/* ---- Reveal reason overlay ---- */

.ack-overlay {
  position: fixed;
  inset: 0;
  background: rgba(61, 47, 122, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
  z-index: 10;
}

.ack-card {
  background: var(--pbx-card);
  border-radius: 14px;
  padding: var(--sp-3);
  max-width: 460px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.ack-actions {
  display: flex;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
}

/* ---- Prototype pages menu (dev convenience, family pattern) ---- */

.pages-menu { position: relative; }

.pages-menu summary {
  list-style: none;
  cursor: pointer;
  color: var(--pbx-action);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid var(--pbx-action);
  border-radius: var(--radius);
}

.pages-menu summary::-webkit-details-marker { display: none; }

.pages-menu[open] summary,
.pages-menu summary:hover {
  color: var(--pbx-ink);
  background: color-mix(in srgb, var(--pbx-action) 10%, white);
}

.pages-menu__list {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: var(--pbx-card);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  min-width: 220px;
  padding: 6px;
  z-index: 20;
  display: flex;
  flex-direction: column;
}

.pages-menu__list a {
  color: var(--pbx-ink);
  text-decoration: none;
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 6px;
}

.pages-menu__list a:hover {
  background: var(--pbx-surface);
  color: var(--pbx-action);
}

@media (max-width: 720px) {
  .pbx-header__inner,
  .page {
    width: 100%;
  }

  .pbx-header__inner {
    padding: 0.875rem 1rem;
  }

  .page {
    padding: var(--sp-3) 1rem var(--sp-4);
  }

  .pbx-header__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .kv-row, .sens-row { grid-template-columns: 1fr; }
}

/* ---- Opportunities: engagement-stage separation (C10 / bible UX-004) ---- */

.stage-legend {
  display: flex;
  gap: var(--sp-1);
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}

.stage-chip {
  display: inline-block;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  letter-spacing: 0.02em;
}

.stage-chip--enquiry {
  background: var(--pbx-surface);
  color: var(--pbx-muted);
  border: 1.5px dashed var(--pbx-muted);
}

.stage-chip--offer {
  background: var(--pbx-action);
  color: #fff;
}

.stage-chip--contract {
  background: color-mix(in srgb, var(--pbx-caution) 16%, white);
  color: #7a5410;
  border: 1px solid var(--pbx-caution);
}

.stage-chip--assignment {
  background: color-mix(in srgb, var(--pbx-success) 14%, white);
  color: var(--pbx-success);
  border: 1px solid var(--pbx-success);
}

.opp-card__head {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex-wrap: wrap;
  margin-bottom: var(--sp-1);
}

.opp-card__head h2 { margin: 0; }

.opp-card--offer {
  border-left: 4px solid var(--pbx-action);
}

.not-an-offer {
  background: color-mix(in srgb, var(--pbx-muted) 10%, white);
  border: 1.5px dashed var(--pbx-muted);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pbx-muted);
  margin-bottom: var(--sp-2);
}

.offer-version {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--pbx-deep);
  background: color-mix(in srgb, var(--pbx-action) 8%, white);
  border-radius: var(--radius);
  padding: 6px 12px;
  margin-bottom: var(--sp-1);
}

.opp-deadline {
  margin-top: var(--sp-1);
  font-size: 13px;
}

/* Pre-reveal disclosure block (UX-026) */
.reveal-disclosure {
  background: var(--pbx-surface);
  border-radius: var(--radius);
  padding: 4px 12px 8px;
  margin: var(--sp-1) 0;
}

/* Future nav entries (bible IA, unbuilt) */
.pages-menu__future {
  color: var(--pbx-muted);
  font-size: 14px;
  padding: 7px 10px;
  font-style: italic;
  opacity: 0.7;
}

/* ---- Small-screen pass (bible UX-033: usable at 320px) ---- */

@media (max-width: 480px) {
  body { font-size: 14px; }
  .page { padding: var(--sp-2) 0.75rem var(--sp-3); }
  .pbx-header__inner { padding: 0.75rem; gap: var(--sp-1); }
  .pbx-header .brand-logo { width: 40px; height: 40px; }
  .hero-job { padding: var(--sp-2); }
  .hero-job h2 { font-size: 18px; }
  .tile-grid { grid-template-columns: 1fr; }
  .ack-actions { flex-wrap: wrap; }
  .ack-actions .btn { flex: 1 1 auto; }
  .stage-legend { gap: 6px; }
  .call-banner { flex-direction: column; }
  .auth-card { padding: var(--sp-3); }
}
