/* ===========================================
   AUTH PAGES — Premium Split Layout v2
   $20M-funded company design standard
   Scoped under .auth-page body class
   =========================================== */

/* -- Custom Properties ----------------------------- */
:root {
  --auth-blue: #2F80ED;
  --auth-blue-hover: #2670D4;
  --auth-blue-dark: #1B5EB5;
  --auth-blue-deep: #14458A;
  --auth-black: #0F172A;
  --auth-heading: #111827;
  --auth-text: #374151;
  --auth-text-muted: #6B7280;
  --auth-text-light: #9CA3AF;
  --auth-border: #E2E8F0;
  --auth-border-hover: #CBD5E1;
  --auth-bg-page: #F8FAFC;
  --auth-bg-card: #FFFFFF;
  --auth-bg-input: #FFFFFF;
  --auth-bg-subtle: #F9FAFB;
  --auth-error: #EF4444;
  --auth-success: #059669;
  --auth-radius-card: 28px;
  --auth-radius-md: 14px;
  --auth-radius-input: 12px;
  --auth-radius-btn: 12px;
  --auth-transition: 0.2s ease;
  --auth-transition-smooth: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --auth-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --auth-shadow-card: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.04), 0 24px 64px rgba(0,0,0,0.06);
  --auth-shadow-input-focus: 0 0 0 3px rgba(47,128,237,0.12);
}

/* -- Page Background ------------------------------- */
.auth-page {
  background: var(--auth-bg-page);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.auth-main {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  font-family: var(--auth-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -- Main Card Container --------------------------- */
.auth-card {
  width: 100%;
  max-width: 1100px;
  background: var(--auth-bg-card);
  border-radius: var(--auth-radius-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--auth-shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  animation: authCardEntrance 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes authCardEntrance {
  from { opacity: 0; transform: translateY(16px) scale(0.99); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===================================================
   LEFT COLUMN — Form Panel
   =================================================== */
.auth-left {
  padding: 60px 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* -- Brand Row ------------------------------------- */
.auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
}

.auth-brand__logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: contain;
}

.auth-brand__name {
  font-size: 19px;
  font-weight: 800;
  color: var(--auth-black);
  letter-spacing: -0.03em;
}

/* -- Heading --------------------------------------- */
.auth-heading {
  font-size: 34px;
  font-weight: 800;
  color: var(--auth-heading);
  margin: 0 0 10px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.auth-subtext {
  font-size: 15px;
  color: var(--auth-text-muted);
  margin: 0 0 36px;
  line-height: 1.65;
  max-width: 400px;
}

/* -- Form Group ------------------------------------ */
.auth-form-group {
  margin-bottom: 22px;
}

.auth-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--auth-heading);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.auth-form-input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1.5px solid var(--auth-border);
  border-radius: var(--auth-radius-input);
  font-size: 15px;
  color: var(--auth-heading);
  background: var(--auth-bg-input);
  transition: all var(--auth-transition);
  font-family: var(--auth-font);
  box-sizing: border-box;
}

.auth-form-input::placeholder {
  color: var(--auth-text-light);
  font-weight: 400;
}

.auth-form-input:hover {
  border-color: var(--auth-border-hover);
}

.auth-form-input:focus {
  outline: none;
  border-color: var(--auth-blue);
  box-shadow: var(--auth-shadow-input-focus);
}

/* -- Password Toggle ------------------------------- */
.auth-password-wrap {
  position: relative;
}

.auth-password-wrap .auth-form-input {
  padding-right: 48px;
}

.auth-password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--auth-text-light);
  transition: color var(--auth-transition);
  border-radius: 8px;
  padding: 0;
}

.auth-password-toggle:hover {
  color: var(--auth-text);
}

/* -- Remember / Forgot Row ------------------------- */
.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.auth-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--auth-blue);
  cursor: pointer;
  border-radius: 4px;
}

.auth-remember span {
  font-size: 14px;
  color: var(--auth-text-muted);
  font-weight: 500;
}

.auth-forgot {
  font-size: 14px;
  font-weight: 600;
  color: var(--auth-blue);
  text-decoration: none;
  transition: color var(--auth-transition);
}

.auth-forgot:hover {
  color: var(--auth-blue-hover);
  text-decoration: underline;
}

/* -- Primary Button -------------------------------- */
.auth-btn-primary {
  width: 100%;
  height: 52px;
  background: var(--auth-blue);
  color: #FFFFFF;
  border: none;
  border-radius: var(--auth-radius-btn);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--auth-transition-smooth);
  font-family: var(--auth-font);
  box-shadow: 0 1px 3px rgba(47, 128, 237, 0.15), 0 4px 12px rgba(47, 128, 237, 0.12);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.auth-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
  pointer-events: none;
}

.auth-btn-primary:hover:not(:disabled) {
  background: var(--auth-blue-hover);
  box-shadow: 0 2px 4px rgba(47, 128, 237, 0.15), 0 8px 24px rgba(47, 128, 237, 0.2);
  transform: translateY(-1px);
}

.auth-btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(47, 128, 237, 0.15);
}

.auth-btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* -- Divider --------------------------------------- */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
  color: var(--auth-text-light);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--auth-border);
}

/* -- Social Button --------------------------------- */
.auth-socials {
  margin-bottom: 0;
}

.auth-btn-social {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border: 1.5px solid var(--auth-border);
  border-radius: var(--auth-radius-btn);
  background: var(--auth-bg-card);
  font-size: 14px;
  font-weight: 600;
  color: var(--auth-heading);
  cursor: pointer;
  transition: all var(--auth-transition);
  font-family: var(--auth-font);
}

.auth-btn-social:hover {
  border-color: var(--auth-border-hover);
  background: var(--auth-bg-subtle);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.auth-btn-social svg {
  flex-shrink: 0;
}

/* -- Bottom Link ----------------------------------- */
.auth-bottom {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--auth-text-muted);
  line-height: 1.5;
  font-weight: 500;
}

.auth-bottom a {
  color: var(--auth-blue);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--auth-transition);
}

.auth-bottom a:hover {
  color: var(--auth-blue-hover);
  text-decoration: underline;
}

/* -- Terms Checkbox -------------------------------- */
.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}

.auth-terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--auth-blue);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.auth-terms label {
  font-size: 13px;
  color: var(--auth-text-muted);
  line-height: 1.55;
  cursor: pointer;
  font-weight: 400;
}

.auth-terms a {
  color: var(--auth-blue);
  font-weight: 600;
  text-decoration: none;
}

.auth-terms a:hover {
  text-decoration: underline;
}

/* ===================================================
   RIGHT COLUMN — Blue Feature Panel
   =================================================== */
/* ===================================================
   RIGHT COLUMN — Blue Feature Panel (Redesigned v2)
   =================================================== */
.auth-right {
  display: flex;
  background: linear-gradient(165deg, #4B9AFF 0%, #2F80ED 35%, #1B5EB5 70%, #0F3D7A 100%);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow effects */
.auth-right::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.auth-right::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(79,172,254,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.auth-right__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 24px;
}

/* -- Image Placeholder Slot ------------------------ */
.auth-right__image-slot {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-right__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

/* Fallback when image not loaded */
.auth-right__image-slot:has(img[src=""]),
.auth-right__image-slot:has(img:not([src])) {
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.auth-right__image-slot::before {
  content: '';
  display: none;
}

/* -- Title & Subtitle ------------------------------ */
.auth-right__title {
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.03em;
}

.auth-right__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 360px;
}

/* -- Feature List (Redesigned) --------------------- */
.auth-right__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-right__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.auth-right__feature:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.auth-right__feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-right__feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: #FFFFFF;
  stroke-width: 2;
}

.auth-right__feature-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.auth-right__feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.auth-right__feature-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* -- Stats Row ------------------------------------- */
.auth-right__stats-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

.auth-right__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.auth-right__stat-num {
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.auth-right__stat-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -- Legacy styles (keep for backward compat) ------ */
.auth-right__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.auth-right__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.auth-right__chip svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

/* -- Dashboard Mock Card --------------------------- */
.auth-mock {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 28px;
}

.auth-mock__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.auth-mock__dot--red { background: #FF5F57; }
.auth-mock__dot--yellow { background: #FFBD2E; }
.auth-mock__dot--green { background: #28C840; }

.auth-mock__title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 8px;
  letter-spacing: 0.01em;
}

.auth-mock__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
}

.auth-mock__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.auth-mock__stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.auth-mock__stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.auth-mock__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-mock__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease;
}

.auth-mock__item:hover {
  background: rgba(255, 255, 255, 0.09);
}

.auth-mock__item-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.auth-mock__item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.auth-mock__item-name {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-mock__item-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 400;
}

.auth-mock__item-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.auth-mock__item-badge--confirmed {
  background: rgba(34, 197, 94, 0.18);
  color: #86EFAC;
}

.auth-mock__item-badge--pending {
  background: rgba(251, 191, 36, 0.18);
  color: #FDE68A;
}

/* -- Trust Proof Row ------------------------------- */
.auth-right__proof {
  display: flex;
  align-items: center;
  gap: 24px;
}

.auth-right__proof-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.auth-right__proof-value {
  font-size: 17px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.auth-right__proof-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.auth-right__proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
}

/* ===================================================
   FOOTER WRAPPER — Matches Homepage faq-v2-section
   =================================================== */
.auth-footer-section {
  padding: 0 24px 60px;
  background: linear-gradient(180deg, var(--auth-bg-page) 0%, var(--auth-bg-page) 10%, #2F80ED 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Footer underlay - urbance watermark */
.auth-footer-section .footer-underlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 60%;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.auth-footer-section .footer-underlay::before {
  content: 'urbance';
  position: absolute;
  font-size: clamp(10rem, 25vw, 35rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  letter-spacing: -0.08em;
  z-index: 0;
  text-align: center;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}

/* Footer wrapper sits above watermark */
.auth-footer-section .faq-footer-wrapper {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive footer underlay */
@media (max-width: 900px) {
  .auth-footer-section .footer-underlay {
    height: 50%;
  }
  .auth-footer-section .footer-underlay::before {
    font-size: clamp(7rem, 18vw, 20rem);
    bottom: -40px;
  }
}

@media (max-width: 600px) {
  .auth-footer-section {
    padding: 0 16px 60px;
  }
  .auth-footer-section .footer-underlay {
    height: 50%;
  }
  .auth-footer-section .footer-underlay::before {
    font-size: clamp(5rem, 15vw, 14rem);
    bottom: -20px;
  }
}

/* ===================================================
   RESPONSIVE — Tablet (max-width: 960px)
   =================================================== */
@media (max-width: 960px) {
  .auth-main {
    padding: 48px 20px;
  }

  .auth-card {
    max-width: 540px;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .auth-left {
    padding: 48px 44px 40px;
  }

  .auth-heading {
    font-size: 30px;
  }

  .auth-right {
    padding: 36px 44px;
  }

  .auth-right__title {
    font-size: 23px;
  }

  .auth-right__sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .auth-right__chips {
    margin-bottom: 24px;
  }

  .auth-mock {
    padding: 18px;
    margin-bottom: 22px;
  }

  .auth-mock__stat-value {
    font-size: 20px;
  }

  .auth-right__proof {
    gap: 18px;
  }
}

/* ===================================================
   RESPONSIVE — Mobile (max-width: 640px)
   =================================================== */
@media (max-width: 640px) {
  .auth-main {
    padding: 20px 16px;
    min-height: calc(100vh - 70px);
    align-items: flex-start;
    padding-top: 24px;
  }

  .auth-card {
    border-radius: 22px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 4px 16px rgba(0,0,0,0.05);
  }

  .auth-left {
    padding: 36px 28px 32px;
  }

  .auth-brand {
    margin-bottom: 32px;
  }

  .auth-heading {
    font-size: 27px;
  }

  .auth-subtext {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .auth-form-input {
    height: 48px;
    font-size: 15px;
  }

  .auth-btn-primary {
    height: 50px;
    font-size: 15px;
  }

  .auth-btn-social {
    height: 48px;
    font-size: 14px;
  }

  .auth-right {
    padding: 32px 28px;
  }

  .auth-right__title {
    font-size: 21px;
  }

  .auth-right__sub {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .auth-right__chips {
    margin-bottom: 20px;
  }

  .auth-mock__stats {
    gap: 18px;
  }

  .auth-mock__stat-value {
    font-size: 18px;
  }

  .auth-right__proof {
    gap: 14px;
    flex-wrap: wrap;
  }

  .auth-right__proof-value {
    font-size: 15px;
  }
}

/* ===================================================
   RESPONSIVE — Small Mobile (max-width: 400px)
   =================================================== */
@media (max-width: 400px) {
  .auth-main {
    padding: 14px 10px;
  }

  .auth-card {
    border-radius: 20px;
  }

  .auth-left {
    padding: 32px 22px 28px;
  }

  .auth-heading {
    font-size: 25px;
  }

  .auth-form-group {
    margin-bottom: 18px;
  }

  .auth-form-input {
    height: 46px;
    font-size: 14px;
    border-radius: 10px;
  }

  .auth-btn-primary {
    height: 48px;
    border-radius: 10px;
  }

  .auth-btn-social {
    height: 46px;
    border-radius: 10px;
  }

  .auth-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .auth-right {
    padding: 28px 22px;
  }

  .auth-right__chips {
    gap: 6px;
  }

  .auth-right__chip {
    font-size: 11px;
    padding: 5px 12px;
  }

  .auth-mock__item-badge {
    display: none;
  }
}

/* ===================================================
   FOCUS & ACCESSIBILITY
   =================================================== */
.auth-form-input:focus-visible,
.auth-btn-primary:focus-visible,
.auth-btn-social:focus-visible {
  outline: 2px solid var(--auth-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .auth-card {
    animation: none;
  }

  .auth-btn-primary:hover,
  .auth-btn-social:hover {
    transform: none;
  }
}

/* ===================================================
   FORCED COLORS SUPPORT
   =================================================== */
@media (forced-colors: active) {
  .auth-btn-primary {
    border: 2px solid ButtonText;
  }

  .auth-form-input {
    border: 1px solid ButtonText;
  }
}
