/* ============================================================
   Public seller auth — register / login (Fignoc palette)
   Navy #0A2472 · Red #E63946 · Gold #f5c842
   ============================================================ */

/* Auth pages: lean footer, full-bleed main */
.auth-layout main {
  min-height: 0;
  padding: 0;
}

.auth-layout .footer-cta-strip {
  display: none;
}

.auth-layout .site-footer .footer-body {
  padding-top: 2.25rem;
  padding-bottom: 2rem;
}

.auth-layout .messages-container {
  max-width: 580px;
  margin: 0.75rem auto 0;
  padding: 0 1rem;
}

.auth-page {
  min-height: calc(100vh - 102px);
  background: var(--page-bg);
}

/* ─── Mobile brand strip ─── */
.auth-mobile-brand {
  display: none;
  padding: 1rem 1rem 0;
  max-width: 560px;
  margin: 0 auto;
}

.auth-mobile-brand-inner {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  color: var(--navy);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.auth-mobile-brand-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red) 50%, var(--gold));
  pointer-events: none;
}

.auth-mobile-brand-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.auth-mobile-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffd95e, var(--gold));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.auth-mobile-brand-top strong {
  font-size: 0.92rem;
  font-weight: 800;
  display: block;
  line-height: 1.2;
}

.auth-mobile-brand-top span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.auth-mobile-brand h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
}

.auth-mobile-brand h2 em {
  color: var(--red);
  font-style: normal;
}

.auth-mobile-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.auth-mobile-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--navy-light);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.auth-mobile-pill i {
  color: var(--navy);
  font-size: 0.6rem;
}

/* ─── Form panel ─── */
.auth-form {
  padding: 2rem 1.5rem 3rem;
  background: var(--page-bg);
}

.auth-form-inner {
  max-width: 520px;
  padding: 2rem 2rem 1.75rem;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--card-bg);
  position: relative;
  overflow: hidden;
}

.auth-form-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 32%, var(--red) 50%, var(--gold) 100%);
}

.auth-form-inner::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.12), transparent 70%);
  pointer-events: none;
}

.auth-form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  border: 1px solid rgba(230, 57, 70, 0.15);
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.auth-form-title {
  font-size: clamp(1.45rem, 4vw, 1.8rem);
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.auth-form-sub {
  position: relative;
  z-index: 1;
}

.auth-form-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 0;
  position: relative;
  z-index: 1;
}

.auth-form-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: #f3f4f6;
  border: 1px solid var(--border);
}

.auth-form-highlights i {
  color: var(--navy);
  font-size: 0.62rem;
}

.auth-req {
  color: var(--red);
  font-weight: 700;
}

.auth-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Step indicator */
.auth-flow-steps {
  background: #f3f4f6;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.6rem 0.85rem;
  margin: 1.1rem 0 0.5rem;
  position: relative;
  z-index: 1;
}

.auth-flow-step.active .num {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.35);
}

.auth-progress {
  height: 4px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.auth-progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--navy), var(--red) 55%, var(--gold));
  transition: width 0.35s ease;
}

.auth-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px dashed var(--border);
  position: relative;
  z-index: 1;
}

.auth-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.3;
}

.auth-trust-item i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: var(--navy);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.auth-form .form-input {
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  border-color: var(--border);
  min-height: 46px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.auth-form .form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10, 36, 114, 0.08);
}

.auth-form .form-label {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.auth-submit-btn {
  width: 100%;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 999px;
  margin-top: 0.25rem;
  background: linear-gradient(135deg, var(--gold) 0%, #ffd95e 45%, var(--gold-dark) 100%);
  color: var(--navy);
  border: none;
  box-shadow: 0 4px 18px rgba(245, 200, 66, 0.45);
  position: relative;
  z-index: 1;
}

.auth-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 200, 66, 0.5);
}

.auth-submit-btn:disabled {
  opacity: 0.75;
  cursor: wait;
}

.auth-signin-foot {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  position: relative;
  z-index: 1;
}

.auth-signin-foot a {
  font-weight: 700;
  color: var(--navy);
}

.auth-terms {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 1.15rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.auth-terms a {
  color: var(--navy);
  font-weight: 600;
}

.auth-divider {
  position: relative;
  z-index: 1;
}

/* Brand panel — uses global Fignoc tokens from main.css */
.auth-brand-headline {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .auth-page {
    min-height: auto;
  }

  .auth-mobile-brand {
    display: block;
  }

  .auth-form {
    padding: 0.85rem 1rem 2.5rem;
    align-items: flex-start;
  }

  .auth-form-inner {
    padding: 1.45rem 1.15rem 1.35rem;
    border-radius: 18px;
  }

  .auth-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .auth-form-highlights {
    display: none;
  }

  .auth-flow-steps {
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .auth-flow-steps::-webkit-scrollbar {
    display: none;
  }

  .auth-trust-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .auth-trust-item {
    flex-direction: row;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .auth-mobile-brand {
    padding: 0.75rem 0.75rem 0;
  }

  .auth-form {
    padding: 0.65rem 0.75rem 2rem;
  }

  .auth-form-inner {
    padding: 1.2rem 1rem 1.1rem;
  }

  .auth-flow-step {
    font-size: 0.68rem;
  }

  .auth-flow-connector {
    max-width: 18px;
  }

  .auth-form-title {
    font-size: 1.35rem;
  }
}

.auth-layout--register .public-nav {
  box-shadow: 0 2px 16px rgba(6, 24, 64, 0.06);
}

.auth-layout--login .footer-cta-strip {
  display: none;
}

/* ============================================================
   Seller login — centered card (classic layout, enhanced)
   ============================================================ */

.auth-login-page {
  min-height: calc(100vh - 102px);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}

/* Faint brand wash — keeps the page clean (no flat grey) but on-brand */
.auth-login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 88% 6%, rgba(10, 36, 114, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 8% 96%, rgba(230, 57, 70, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 32% 40% at 96% 96%, rgba(245, 200, 66, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.auth-login-center {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
}

.auth-login-card {
  position: relative;
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Brand accent bar across the top of the card */
.auth-login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red) 55%, var(--gold));
  z-index: 2;
}

.auth-login-card-hero {
  text-align: center;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  border-bottom: 3px solid var(--gold);
  position: relative;
}

.auth-login-card-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(245, 200, 66, 0.12), transparent 55%);
  pointer-events: none;
}

.auth-login-logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.auth-login-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffd95e, var(--gold));
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.auth-login-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.auth-login-logo-text span {
  color: var(--gold);
}

.auth-login-hero-title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.auth-login-hero-sub {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.auth-login-card-body {
  padding: 1.5rem 1.5rem 1.35rem;
}

.auth-login-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  font-size: 0.84rem;
  margin-bottom: 1.15rem;
  line-height: 1.45;
}

.auth-login-alert--error {
  background: var(--red-light);
  border: 1px solid rgba(230, 57, 70, 0.2);
  color: var(--red-dark);
}

.auth-login-alert i {
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.auth-login-form .form-input {
  border-radius: 12px;
  padding: 0.72rem 0.9rem;
  min-height: 46px;
  border-color: var(--border);
}

.auth-login-form .form-input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(10, 36, 114, 0.08);
}

.auth-login-form .form-input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: #f9fafb;
}

.auth-login-options {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.auth-login-forgot {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy, #0a2472);
  text-decoration: none;
}
.auth-login-forgot:hover { text-decoration: underline; }

.auth-login-remember {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  color: var(--text-secondary);
  cursor: pointer;
  margin: 0;
}

.auth-login-remember input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--navy);
  cursor: pointer;
}

.auth-login-submit {
  width: 100%;
  margin-top: 0;
}

.auth-login-submit:disabled {
  opacity: 0.85;
  cursor: wait;
  transform: none !important;
}

.auth-login-btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.auth-login-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

.auth-login-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}

.auth-login-trust i {
  color: var(--navy);
  font-size: 0.68rem;
}

.auth-login-notice {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  line-height: 1.55;
  margin-top: 1rem;
}

.auth-login-notice strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}

.auth-login-notice p {
  margin: 0;
  color: var(--text-secondary);
}

.auth-login-notice code {
  font-size: 0.74rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
}

.auth-login-notice--info {
  background: #f3f4f6;
  border: 1px solid var(--border);
}

.auth-login-notice--info strong {
  color: var(--navy);
}

.auth-login-notice--warn {
  background: var(--gold-light);
  border: 1px solid rgba(245, 200, 66, 0.35);
}

.auth-login-notice--warn strong {
  color: #92400e;
}

.auth-login-notice--warn a {
  font-weight: 700;
  color: #b45309;
}

.auth-login-foot-link {
  text-align: center;
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
}

.auth-login-foot-link a {
  color: var(--text-muted);
  font-weight: 600;
}

.auth-login-foot-link a:hover {
  color: var(--navy);
}

.auth-layout--login .public-nav {
  box-shadow: 0 2px 16px rgba(6, 24, 64, 0.06);
}

/* ============================================================
   Register v2 — minimal header, spacious centered form
   ============================================================ */

.auth-layout--register .public-header-shell {
  display: none;
}

.auth-minimal-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.auth-minimal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
}

.auth-minimal-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.auth-minimal-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.auth-minimal-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.auth-minimal-logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
}

.auth-minimal-logo-text span {
  color: var(--red);
}

.auth-minimal-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.auth-minimal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.auth-minimal-link:hover {
  color: var(--navy);
  background: var(--navy-light);
}

.auth-minimal-link--primary {
  color: #fff;
  background: var(--navy);
}

.auth-minimal-link--primary:hover {
  color: #fff;
  background: var(--navy-dark);
}

.auth-register-page {
  min-height: calc(100vh - 58px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1rem 3rem;
  background: var(--page-bg);
}

.auth-register-layout {
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
  gap: 2.5rem;
  align-items: start;
}

.auth-register-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.auth-register-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
}

.auth-register-card-head {
  margin-bottom: 1.5rem;
}

.auth-register-step {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.auth-register-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.auth-register-lead {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 36rem;
}

.auth-register-lead strong {
  color: var(--navy);
  font-weight: 700;
}

.auth-register-form .form-group {
  margin-bottom: 1rem;
}

.auth-register-form .form-group:last-of-type {
  margin-bottom: 0;
}

.auth-register-form .form-label {
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
}

.auth-register-form .form-input {
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
  min-height: 44px;
}

.auth-register-form .auth-form-row {
  gap: 0.85rem;
}

.auth-register-form .auth-terms {
  margin: 1.25rem 0 1rem;
  font-size: 0.75rem;
}

.auth-register-submit {
  width: 100%;
  justify-content: center;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
}

.auth-register-submit span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.auth-register-foot {
  margin: 1.25rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.auth-register-foot a {
  font-weight: 700;
  color: var(--navy);
}

.auth-register-aside {
  padding: 1.25rem 0 0;
}

.auth-register-aside h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.auth-register-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.auth-register-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.auth-register-perks i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--navy-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.auth-aside-note {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.auth-aside-note i {
  color: var(--navy);
  margin-right: 0.15rem;
}

.auth-aside-note code {
  font-size: 0.72rem;
  padding: 0.05rem 0.3rem;
  border-radius: 4px;
  background: rgba(10, 36, 114, 0.06);
  color: var(--navy);
}

.auth-minimal-footer {
  padding: 1.25rem 0 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: #fff;
}

.auth-minimal-footer p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.auth-minimal-footer a {
  color: var(--text-secondary);
  font-weight: 600;
}

.auth-layout--register .site-footer {
  display: none;
}

.auth-layout--register .messages-container {
  max-width: 520px;
  margin: 0.75rem auto 0;
  padding: 0 1rem;
}

@media (max-width: 860px) {
  .auth-register-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .auth-register-aside {
    order: -1;
    padding: 0 0 0.25rem;
  }

  .auth-register-aside h2 {
    font-size: 0.9rem;
    margin-bottom: 0.65rem;
  }

  .auth-register-perks {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .auth-register-perks li {
    font-size: 0.75rem;
    flex: 1 1 calc(50% - 0.5rem);
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.55rem 0.65rem;
  }

  .auth-register-perks i {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
}

@media (max-width: 520px) {
  .auth-register-page {
    padding: 1.25rem 0.75rem 2rem;
  }

  .auth-register-card {
    padding: 1.35rem 1.15rem 1.25rem;
    border-radius: 16px;
  }

  .auth-register-form .auth-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .auth-minimal-nav .auth-minimal-link:first-child {
    padding: 0.4rem 0.55rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .auth-login-page {
    min-height: auto;
    padding: 1rem 0.75rem 2.5rem;
    align-items: flex-start;
  }

  .auth-login-card-hero {
    padding: 1.35rem 1.15rem 1.15rem;
  }

  .auth-login-card-body {
    padding: 1.15rem 1.15rem 1.25rem;
  }

  .auth-login-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
