/* ============================================================
   OH Theme Management — auth.css v2.1.0
   Professional SaaS Auth & Account Pages
   ============================================================ */

/* ── Auth Layout ─────────────────────────────────────────────── */
.otm-auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fafafa;
}

/* ── Left Panel (Branding) ───────────────────────────────────── */
.otm-auth-left {
  background: linear-gradient(145deg, #1e1b4b 0%, #312e81 35%, #4338ca 65%, #5c5fef 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  min-height: 100vh;
}

/* Decorative mesh */
.otm-auth-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(139,92,246,.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(217,70,239,.25) 0%, transparent 60%);
  pointer-events: none;
}

.otm-auth-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.otm-auth-left__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Brand logo */
.otm-auth-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  margin-bottom: 3rem;
}

.otm-auth-brand-mark {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(10px);
}

.otm-auth-brand-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -.02em;
}

.otm-auth-brand-text span { color: #fbbf24; }

/* Headline */
.otm-auth-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.otm-auth-subline {
  color: rgba(255,255,255,.65);
  font-size: .97rem;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.otm-auth-subline a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: none;
}
.otm-auth-subline a:hover { text-decoration: underline; }

/* Feature list */
.otm-auth-feat-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: auto;
}

.otm-auth-feat {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.otm-auth-feat-icon {
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.15);
}

/* Mockup preview */
.otm-auth-mockup {
  margin-top: 2.5rem;
  position: relative;
}

.otm-auth-mockup-frame {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.otm-auth-mockup-bar {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem .9rem;
  background: rgba(0,0,0,.15);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.otm-auth-mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: .6;
}

.otm-auth-mockup-bar span:nth-child(1) { background: #ff5f57; }
.otm-auth-mockup-bar span:nth-child(2) { background: #ffbd2e; }
.otm-auth-mockup-bar span:nth-child(3) { background: #28ca41; }

.otm-auth-mockup img {
  width: 100%;
  opacity: .85;
  display: block;
}

/* Stats strip */
.otm-auth-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.otm-auth-stat strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: 'DM Sans', sans-serif;
}
.otm-auth-stat span {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-family: 'DM Sans', sans-serif;
}

/* ── Right Panel (Form) ──────────────────────────────────────── */
.otm-auth-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  overflow-y: auto;
}

.otm-auth-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  border: 1.5px solid #e4e4ef;
  box-shadow: 0 8px 40px rgba(92,95,239,.08);
}

.otm-auth-logo {
  margin-bottom: 2rem;
}
.otm-auth-logo a {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.otm-auth-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #5c5fef, #7c3aed);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otm-auth-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #0f0f1a;
  margin-bottom: .4rem;
  line-height: 1.15;
}

.otm-auth-subtitle {
  font-size: .88rem;
  color: #6b7080;
  margin-bottom: 1.75rem;
  font-family: 'DM Sans', sans-serif;
}

/* Social login */
.otm-auth-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.otm-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .65rem;
  border: 1.5px solid #e4e4ef;
  border-radius: 10px;
  background: #fff;
  font-size: .85rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: #374151;
  cursor: pointer;
  transition: all .2s;
}
.otm-social-btn:hover:not(:disabled) {
  border-color: #5c5fef;
  background: #f5f5fd;
}
.otm-social-btn:disabled { opacity: .4; cursor: not-allowed; }
.otm-social-btn--google .otm-sb-icon { color: #ea4335; }
.otm-social-btn--facebook .otm-sb-icon { color: #1877f2; }
.otm-sb-icon { font-weight: 800; font-size: 1rem; }

/* Divider */
.otm-auth-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  color: #9ca3af;
  font-size: .8rem;
  font-family: 'DM Sans', sans-serif;
}
.otm-auth-divider::before,
.otm-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e4e4ef;
}

/* Form elements */
.otm-form-group { margin-bottom: 1rem; }
.otm-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.otm-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: #374151;
  margin-bottom: .4rem;
  letter-spacing: .01em;
}
.otm-input {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid #e4e4ef;
  border-radius: 10px;
  font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
  color: #0f0f1a;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  appearance: none;
}
.otm-input::placeholder { color: #9ca3af; }
.otm-input:focus {
  border-color: #5c5fef;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(92,95,239,.12);
}
.otm-input:invalid:not(:placeholder-shown) { border-color: #ef4444; }
.otm-input-icon-wrap { position: relative; }
.otm-input-icon-wrap .otm-input { padding-right: 2.8rem; }
.otm-password-toggle {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  padding: .25rem;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.otm-password-toggle:hover { color: #5c5fef; }

/* Form row utilities */
.otm-form-row--space-between { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }

/* Checkbox */
.otm-check-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .83rem;
  font-family: 'DM Sans', sans-serif;
  color: #6b7080;
  cursor: pointer;
  user-select: none;
}
.otm-check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #5c5fef;
  flex-shrink: 0;
}

/* Password strength */
.otm-pass-strength {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  margin-top: -.4rem;
}
.otm-pass-strength__bar {
  flex: 1;
  height: 4px;
  background: #e4e4ef;
  border-radius: 2px;
  overflow: hidden;
}
.otm-pass-strength__fill {
  height: 100%;
  border-radius: 2px;
  transition: width .3s, background .3s;
  width: 0;
}
#otm-pass-label { font-size: .75rem; font-weight: 600; font-family: 'DM Sans', sans-serif; min-width: 70px; }

/* Alerts */
.otm-auth-alert {
  padding: .7rem 1rem;
  border-radius: 10px;
  font-size: .85rem;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.otm-auth-alert--error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.otm-auth-alert--success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #065f46; }

/* Auth links */
.otm-auth-link { color: #5c5fef; font-weight: 500; font-size: .83rem; text-decoration: none; transition: color .2s; }
.otm-auth-link:hover { color: #4040cc; text-decoration: underline; }
.otm-auth-link--bold { font-weight: 700; }

/* Footer */
.otm-auth-footer {
  text-align: center;
  font-size: .83rem;
  color: #6b7080;
  font-family: 'DM Sans', sans-serif;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

/* ── Account Dashboard ───────────────────────────────────────── */
.otm-account-page {
  min-height: 100vh;
  background: #f4f4f8;
  padding-top: 80px;
}

.otm-account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0 4rem;
}

/* Sidebar */
.otm-account-sidebar {
  background: #fff;
  border: 1.5px solid #e4e4ef;
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.otm-account-user {
  padding: 1.5rem;
  border-bottom: 1px solid #e4e4ef;
  display: flex;
  align-items: center;
  gap: .85rem;
}

.otm-account-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #5c5fef, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.otm-account-user-info { flex: 1; min-width: 0; }
.otm-account-user-name {
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #0f0f1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.otm-account-user-email {
  font-size: .75rem;
  color: #9ca3af;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.otm-account-nav { padding: .75rem; }
.otm-account-nav-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem .9rem;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: #6b7080;
  text-decoration: none;
  transition: all .2s;
  margin-bottom: .15rem;
}
.otm-account-nav-item:hover { background: #f4f4f8; color: #5c5fef; }
.otm-account-nav-item.active { background: #ededfd; color: #5c5fef; font-weight: 600; }
.otm-account-nav-item svg { flex-shrink: 0; opacity: .7; }
.otm-account-nav-item.active svg { opacity: 1; }

.otm-account-nav-divider { height: 1px; background: #e4e4ef; margin: .5rem 0; }

/* Main content */
.otm-account-main {}

/* Wallet summary card */
.otm-wallet-summary {
  background: linear-gradient(135deg, #312e81, #5c5fef);
  border-radius: 20px;
  padding: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.otm-wallet-summary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.12) 0%, transparent 60%);
}
.otm-wallet-summary__inner { position: relative; z-index: 1; }
.otm-wallet-summary__label { font-size: .8rem; font-family: 'DM Sans', sans-serif; color: rgba(255,255,255,.65); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .08em; }
.otm-wallet-summary__balance { font-size: 2.8rem; font-weight: 800; font-family: 'DM Sans', sans-serif; line-height: 1; margin-bottom: 1.5rem; }
.otm-wallet-summary__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.otm-wallet-stat { background: rgba(255,255,255,.1); border-radius: 12px; padding: .85rem 1rem; border: 1px solid rgba(255,255,255,.15); }
.otm-wallet-stat__val { font-size: 1.1rem; font-weight: 800; font-family: 'DM Sans', sans-serif; color: #fff; }
.otm-wallet-stat__lbl { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

/* Account cards grid */
.otm-account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.otm-account-card {
  background: #fff;
  border: 1.5px solid #e4e4ef;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all .2s;
  text-decoration: none;
  display: block;
}
.otm-account-card:hover { border-color: #5c5fef; box-shadow: 0 4px 20px rgba(92,95,239,.12); transform: translateY(-2px); }
.otm-account-card__icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.1rem;
}
.otm-account-card__icon--indigo { background: #eef2ff; }
.otm-account-card__icon--violet { background: #f5f3ff; }
.otm-account-card__icon--green  { background: #f0fdf4; }
.otm-account-card__icon--amber  { background: #fffbeb; }
.otm-account-card__title { font-size: .9rem; font-weight: 700; font-family: 'DM Sans', sans-serif; color: #0f0f1a; margin-bottom: .25rem; }
.otm-account-card__desc { font-size: .78rem; color: #9ca3af; }

/* Recent transactions in account */
.otm-account-section {
  background: #fff;
  border: 1.5px solid #e4e4ef;
  border-radius: 20px;
  overflow: hidden;
}
.otm-account-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e4e4ef;
}
.otm-account-section-title { font-size: .95rem; font-weight: 700; font-family: 'DM Sans', sans-serif; color: #0f0f1a; }
.otm-account-section-link { font-size: .8rem; color: #5c5fef; font-weight: 600; text-decoration: none; }
.otm-txn-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f4f4f8;
  transition: background .15s;
}
.otm-txn-item:last-child { border-bottom: none; }
.otm-txn-item:hover { background: #fafafe; }
.otm-txn-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .95rem; }
.otm-txn-icon--credit { background: #f0fdf4; }
.otm-txn-icon--debit  { background: #fef2f2; }
.otm-txn-icon--cashback { background: #fef9c3; }
.otm-txn-info { flex: 1; min-width: 0; }
.otm-txn-title { font-size: .87rem; font-weight: 600; font-family: 'DM Sans', sans-serif; color: #0f0f1a; }
.otm-txn-date { font-size: .74rem; color: #9ca3af; }
.otm-txn-amount { font-size: .95rem; font-weight: 800; font-family: 'DM Sans', sans-serif; white-space: nowrap; }
.otm-txn-amount--credit { color: #059669; }
.otm-txn-amount--debit  { color: #dc2626; }

/* ── Toast ───────────────────────────────────────────────────── */
.otm-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #0f0f1a;
  color: #fff;
  padding: .85rem 1.25rem;
  border-radius: 12px;
  font-size: .88rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all .35s;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  max-width: 340px;
}
.otm-toast.show { transform: none; opacity: 1; }
.otm-toast--success { background: #065f46; }
.otm-toast--error   { background: #991b1b; }

/* ── Responsive ─────────────────────────────────────────────── */
@media(max-width:768px) {
  .otm-auth-page { grid-template-columns: 1fr; }
  .otm-auth-left { display: none; }
  .otm-auth-right { padding: 1.5rem; }
  .otm-auth-card { padding: 2rem 1.5rem; border: none; box-shadow: none; background: transparent; max-width: 100%; }
  .otm-auth-right { background: #fff; }
  .otm-form-row { grid-template-columns: 1fr; }
  .otm-account-layout { grid-template-columns: 1fr; }
  .otm-account-sidebar { position: static; }
  .otm-account-grid { grid-template-columns: 1fr; }
  .otm-wallet-summary__stats { grid-template-columns: 1fr; gap: .75rem; }
}
@media(max-width:480px) {
  .otm-auth-social { grid-template-columns: 1fr; }
  .otm-wallet-summary__balance { font-size: 2rem; }
}

/* ============================================================
   OH Theme — Auth CSS Additions v2.2.1
   SaaS Mini Cards, Plugin Highlights, Auth Orbs
   ============================================================ */

/* ── Decorative orbs (replace image) ────────────────────────── */
.otm-auth-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.otm-auth-orb--1 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(139,92,246,.35) 0%, transparent 70%);
  top: -60px; right: -60px;
  animation: otm-orb-float 8s ease-in-out infinite;
}
.otm-auth-orb--2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(217,70,239,.25) 0%, transparent 70%);
  bottom: 80px; left: -50px;
  animation: otm-orb-float 10s ease-in-out infinite reverse;
}
@keyframes otm-orb-float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-18px) scale(1.04); }
}

/* ── Mini stat cards (login left panel) ─────────────────────── */
.otm-auth-mini-stats {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
}
.otm-auth-mini-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  animation: otm-card-in .5s ease both;
}
.otm-auth-mini-card--blue  { border-color: rgba(99,102,241,.35); }
.otm-auth-mini-card--violet{ border-color: rgba(168,85,247,.35); }
.otm-auth-mini-card--green { border-color: rgba(16,185,129,.35); }
.otm-auth-mini-card:nth-child(1){ animation-delay: .1s; }
.otm-auth-mini-card:nth-child(2){ animation-delay: .2s; }
.otm-auth-mini-card:nth-child(3){ animation-delay: .3s; }
@keyframes otm-card-in {
  from { opacity:0; transform:translateX(-12px); }
  to   { opacity:1; transform:none; }
}
.otm-auth-mini-card__icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}
.otm-auth-mini-card__val {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800; font-size: .95rem; color: #fff; line-height: 1.1;
}
.otm-auth-mini-card__lbl {
  font-size: .72rem; color: rgba(255,255,255,.55);
  font-family: 'DM Sans', sans-serif; line-height: 1.2;
}
.otm-auth-mini-card__trend {
  margin-left: auto;
  font-size: .75rem; font-weight: 700;
  color: #34d399; font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

/* ── Plugin highlights card (register left) ─────────────────── */
.otm-auth-plugin-highlights {
  margin-bottom: 2rem;
}
.otm-auth-highlight-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  animation: otm-card-in .5s ease .1s both;
}
.otm-auth-highlight-card__header {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem;
  background: rgba(0,0,0,.12);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.8);
}
.otm-auth-highlight-card__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.otm-auth-highlight-card__dot--green { background: #34d399; box-shadow: 0 0 6px #34d399; }
.otm-auth-highlight-card__badge {
  margin-left: auto;
  background: rgba(139,92,246,.4);
  border: 1px solid rgba(139,92,246,.5);
  color: #c4b5fd;
  font-size: .68rem; font-weight: 700;
  padding: .15rem .45rem; border-radius: 20px;
}
.otm-auth-highlight-card__body {
  padding: .5rem .25rem;
}
.otm-auth-highlight-row {
  display: flex; align-items: center; gap: .65rem;
  padding: .45rem .75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .83rem; color: rgba(255,255,255,.82);
  border-radius: 8px; transition: background .2s;
}
.otm-auth-highlight-row:hover { background: rgba(255,255,255,.05); }
.otm-auth-highlight-row__icon { font-size: .9rem; width: 18px; text-align: center; }
.otm-auth-highlight-row__check {
  margin-left: auto; color: #34d399;
  font-size: .85rem; font-weight: 800;
}

/* ── Mobile responsive (auth pages) ─────────────────────────── */
@media (max-width: 900px) {
  .otm-auth-page {
    grid-template-columns: 1fr;
  }
  .otm-auth-left {
    min-height: auto;
    padding: 2rem 1.5rem;
  }
  .otm-auth-mini-stats,
  .otm-auth-plugin-highlights {
    display: none; /* hide on very small screens for cleanliness */
  }
  .otm-auth-right {
    padding: 2rem 1.5rem;
  }
  .otm-auth-card {
    box-shadow: none;
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .otm-auth-left { padding: 1.5rem 1.25rem; }
  .otm-auth-headline { font-size: 1.6rem; }
  .otm-auth-stats { gap: 1rem; }
  .otm-form-row { flex-direction: column; gap: 0; }
}
