/* Auth login: accounts / ledger-themed left cover (matches marketing hero voice) */

.auth-translation-cover {
  --auth-ink: #0f172a;
  --auth-ink-soft: #475569;
  --auth-paper: #f8fafc;
  --auth-paper-2: #f1f5f9;
  --auth-accent: var(--admin-primary, #091438);
  --auth-accent-soft: color-mix(in srgb, var(--admin-primary, #091438) 14%, #fff);
  --auth-en-font: "Fraunces", "Times New Roman", serif;
  --auth-ui-font: "Segoe UI", system-ui, sans-serif;
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 80% 50% at 70% -10%, color-mix(in srgb, var(--admin-primary, #091438) 22%, transparent), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, color-mix(in srgb, var(--admin-primary, #091438) 12%, transparent), transparent 50%),
    linear-gradient(160deg, var(--auth-paper) 0%, var(--auth-paper-2) 100%);
  color: var(--auth-ink);
}

.auth-translation-cover__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 85%);
  animation: auth-mesh-drift 28s linear infinite;
}

.auth-translation-cover__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.auth-translation-cover__orb--one {
  width: 18rem;
  height: 18rem;
  top: -4rem;
  right: -3rem;
  background: color-mix(in srgb, var(--admin-primary, #091438) 28%, transparent);
  animation: auth-orb-float 9s ease-in-out infinite;
}

.auth-translation-cover__orb--two {
  width: 14rem;
  height: 14rem;
  bottom: -3rem;
  left: -2rem;
  background: color-mix(in srgb, var(--admin-primary, #091438) 16%, transparent);
  animation: auth-orb-float 11s ease-in-out infinite reverse;
}

.auth-translation-cover__stage {
  position: relative;
  z-index: 1;
  width: min(100%, 36rem);
  text-align: left;
}

.auth-translation-cover__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  font-family: var(--auth-ui-font);
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
}

.auth-translation-cover__pill-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.auth-translation-cover__brand {
  margin: 0 0 0.75rem;
  font-family: var(--auth-en-font);
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--auth-ink);
}

.auth-translation-cover__tagline {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-family: var(--auth-ui-font);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  color: var(--auth-ink-soft);
}

.auth-translation-cover__card {
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.auth-translation-cover__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid #f1f5f9;
}

.auth-translation-cover__card-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.auth-translation-cover__card-title {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.auth-translation-cover__synced {
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  padding: 0.2rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 700;
}

.auth-translation-cover__rows {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.1rem 1.15rem;
}

.auth-translation-cover__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.85rem;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}

.auth-translation-cover__row strong {
  display: block;
  font-size: 0.85rem;
  color: #0f172a;
}

.auth-translation-cover__row span {
  font-size: 0.75rem;
  color: #64748b;
}

.auth-translation-cover__row em {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--auth-accent);
}

@keyframes auth-mesh-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 48px; }
}

@keyframes auth-orb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@media (max-width: 991.98px) {
  .auth-translation-cover {
    min-height: 18rem;
  }
}
