﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DESIGN TOKENS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --bg:           #f2f5f3;
  --surface:      #ffffff;
  --surface-2:    #f7faf8;
  --surface-3:    #eef4f1;

  --border:       #dde8e3;
  --border-focus: #0a7c5c;
  --border-error: #d94040;
  --border-light: #edf4f1;

  --em:           #0a7c5c;
  --em-2:         #0d9870;
  --em-3:         #0b6049;
  --em-pale:      #e4f3ed;
  --em-mid:       #a8d9c8;
  --em-glow:      rgba(10,124,92,0.14);

  --panel-bg:     #0d1e18;
  --panel-2:      #0a1610;
  --panel-3:      #122519;

  --dark:         #0c1e17;
  --text:         #1a2e25;
  --text-2:       #3a5547;
  --muted:        #6b8678;
  --faint:        #9ab5ab;
  --placeholder:  #b0c9c1;

  --error:        #c93535;
  --error-bg:     #fdf0f0;
  --error-border: #eaacac;

  --success:      #0a7c5c;
  --success-bg:   #e4f3ed;

  --warn:         #b87c1a;
  --warn-bg:      #fef6e4;

  --gold:         #c9943a;

  --r-xs:  4px;
  --r-sm:  8px;
  --r:     12px;
  --r-lg:  16px;
  --r-xl:  20px;

  --font-display: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --trans:  all 0.2s cubic-bezier(0.4,0,0.2,1);
  --trans-fast: all 0.15s ease;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESET & BASE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button, input, select, textarea { font-family: inherit; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }
svg { display: block; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PAGE NAVIGATION (demo switcher)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-switcher {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--dark);
  display: flex; align-items: center; gap: 0;
  height: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 16px;
  overflow-x: auto;
}
.page-switcher::-webkit-scrollbar { display: none; }
.switcher-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-right: 14px; white-space: nowrap; font-family: var(--font-display);
}
.switch-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px; height: 44px;
  font-size: 0.75rem; font-weight: 600; font-family: var(--font-display);
  color: rgba(255,255,255,0.4);
  border-bottom: 2px solid transparent;
  transition: var(--trans-fast);
  white-space: nowrap; cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none;
}
.switch-btn:hover { color: rgba(255,255,255,0.75); }
.switch-btn.active { color: #4dd9a8; border-bottom-color: #4dd9a8; }
.switch-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; opacity: 0.6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   AUTH PAGES WRAPPER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.auth-page {
  display: none;
  min-height: 100vh;
}
.auth-page.active { display: flex; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SPLIT LAYOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.auth-split {
  display: grid;
  grid-template-columns: 1fr 520px;
  min-height: 100vh;
  width: 100%;
}

/* LEFT â€” Branding Panel */
.auth-panel {
  background: var(--panel-bg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 52px;
}

/* Subtle grid texture */
.auth-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,124,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,124,92,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.auth-panel::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,124,92,0.12) 0%, transparent 65%);
  bottom: -200px; left: -150px;
  pointer-events: none;
}

.panel-brand {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 10px;
}
.panel-logo-image {
  display: block;
  width: 156px;
  height: auto;
  object-fit: contain;
}
.panel-logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--em); display: flex; align-items: center; justify-content: center;
}
.panel-logo-mark svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.2; }
.panel-logo-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: #fff; letter-spacing: -0.01em;
}

.panel-content {
  position: relative; z-index: 1;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 40px 0;
}
.panel-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff; line-height: 1.2; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.panel-headline em { font-style: normal; color: #4dd9a8; }
.panel-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 360px; margin-bottom: 40px;
}

/* Dashboard preview widget */
.panel-widget {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg); overflow: hidden;
  max-width: 380px;
}
.pw-header {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.pw-dots { display: flex; gap: 5px; }
.pw-dot { width: 8px; height: 8px; border-radius: 50%; }
.pw-dot-r { background: rgba(255,95,87,0.6); }
.pw-dot-y { background: rgba(255,189,46,0.6); }
.pw-dot-g { background: rgba(39,201,63,0.6); }
.pw-url { font-size: 0.65rem; color: rgba(255,255,255,0.25); margin-left: 6px; font-family: var(--font-mono); }
.pw-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.pw-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.pw-stat {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px 8px;
}
.pw-stat-val { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: #fff; }
.pw-stat-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.35); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.05em; }
.pw-chart { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; padding: 12px; }
.pw-chart-label { font-size: 0.62rem; color: rgba(255,255,255,0.35); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.pw-bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.pw-bar { flex: 1; border-radius: 2px 2px 0 0; }
.pw-bar.a { background: linear-gradient(180deg, #0d9870, #0a7c5c); }
.pw-bar.b { background: rgba(255,255,255,0.12); }
.pw-progress-list { display: flex; flex-direction: column; gap: 7px; }
.pw-prog-item { display: flex; align-items: center; gap: 8px; }
.pw-prog-name { font-size: 0.65rem; color: rgba(255,255,255,0.5); width: 80px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pw-prog-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.pw-prog-fill { height: 100%; border-radius: 2px; }
.pw-prog-pct { font-size: 0.6rem; color: rgba(255,255,255,0.4); width: 28px; text-align: right; font-family: var(--font-mono); }

.panel-trust {
  position: relative; z-index: 1;
  display: flex; gap: 20px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
}
.trust-badge svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.3); fill: none; stroke-width: 2; }

/* RIGHT â€” Form Panel */
.auth-form-wrap {
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  min-height: 100vh;
}
.auth-form-inner {
  flex: 1; display: flex; flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
  max-width: 100%;
}

/* Simple centered layout (no split) */
.auth-centered {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 40px 16px;
}
.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px 44px;
  width: 100%; max-width: 460px;
  margin: 0 auto;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORM LOGO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-logo {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 32px;
}
.form-logo-image {
  display: block;
  width: 146px;
  height: auto;
  object-fit: contain;
}
.form-logo-mark {
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--em); display: flex; align-items: center; justify-content: center;
}
.form-logo-mark svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.2; }
.form-logo-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--dark); letter-spacing: -0.01em;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORM HEADINGS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.6rem; color: var(--dark);
  letter-spacing: -0.025em; line-height: 1.2;
  margin-bottom: 6px;
}
.form-subtitle {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 32px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORM ELEMENTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }

.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text-2); margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.form-label-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 7px;
}
.form-label-row .form-label { margin-bottom: 0; }
.form-label-link {
  font-size: 0.78rem; font-weight: 500; color: var(--em);
  transition: var(--trans-fast);
}
.form-label-link:hover { color: var(--em-2); text-decoration: underline; }

.input-wrap { position: relative; }
.form-input {
  width: 100%; height: 44px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0 14px;
  font-size: 0.875rem; font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: var(--trans);
  appearance: none;
}
.form-input::placeholder { color: var(--placeholder); }
.form-input:hover:not(:focus):not(.error):not(:disabled) { border-color: #c0d8cf; }
.form-input:focus { border-color: var(--em); background: #fff; box-shadow: 0 0 0 3px var(--em-glow); }
.form-input.error { border-color: var(--error-border); background: var(--error-bg); }
.form-input.error:focus { border-color: var(--error); box-shadow: 0 0 0 3px rgba(201,53,53,0.1); }
.form-input:disabled { background: var(--surface-2); color: var(--faint); cursor: not-allowed; border-color: var(--border-light); }

/* Input with icon prefix */
.input-prefix { padding-left: 40px !important; }
.input-icon-left {
  position: absolute; left: 13px; top: 50%;
  transform: translateY(-50%); pointer-events: none;
}
.input-icon-left svg { width: 16px; height: 16px; stroke: var(--faint); fill: none; stroke-width: 1.8; }

/* Password toggle */
.input-suffix { padding-right: 42px !important; }
.input-toggle {
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; cursor: pointer;
  color: var(--faint); transition: var(--trans-fast);
}
.input-toggle:hover { background: var(--surface-3); color: var(--text-2); }
.input-toggle svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* Error message */
.form-error {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; color: var(--error);
  margin-top: 6px; font-weight: 500;
}
.form-error svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

/* Helper text */
.form-helper { font-size: 0.75rem; color: var(--faint); margin-top: 5px; }

/* Password strength */
.pw-strength { margin-top: 8px; }
.pw-strength-bars { display: flex; gap: 4px; margin-bottom: 5px; }
.pw-strength-bar {
  flex: 1; height: 3px; border-radius: 2px;
  background: var(--border); transition: var(--trans);
}
.pw-strength-bar.weak   { background: #e05252; }
.pw-strength-bar.fair   { background: var(--gold); }
.pw-strength-bar.good   { background: #4ab06e; }
.pw-strength-bar.strong { background: var(--em); }
.pw-strength-label { font-size: 0.72rem; font-weight: 600; color: var(--muted); }

/* Checkbox */
.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.83rem; color: var(--text-2); line-height: 1.5;
}
.checkbox-row input[type="checkbox"] {
  width: 16px; height: 16px; border-radius: 4px;
  border: 1.5px solid var(--border); background: var(--surface);
  appearance: none; cursor: pointer; flex-shrink: 0; margin-top: 2px;
  transition: var(--trans-fast); position: relative;
}
.checkbox-row input[type="checkbox"]:checked {
  background: var(--em); border-color: var(--em);
}
.checkbox-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute; top: 1px; left: 4px;
  width: 5px; height: 8px;
  border: 2px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.checkbox-row input[type="checkbox"]:focus { box-shadow: 0 0 0 3px var(--em-glow); }
.checkbox-row a { color: var(--em); font-weight: 500; }
.checkbox-row a:hover { text-decoration: underline; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn-primary {
  width: 100%; height: 46px;
  background: var(--em); color: #fff; border: none;
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--trans);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  position: relative; overflow: hidden;
  letter-spacing: 0.01em;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
}
.btn-primary:hover { background: var(--em-2); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(10,124,92,0.3); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-primary:disabled { background: var(--border); color: var(--faint); cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.btn-outline {
  width: 100%; height: 46px;
  background: var(--surface); color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  cursor: pointer; transition: var(--trans);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--em-mid); color: var(--em); background: var(--em-pale); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DIVIDER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0;
}
.form-divider-line { flex: 1; height: 1px; background: var(--border); }
.form-divider-text { font-size: 0.75rem; color: var(--faint); font-weight: 500; white-space: nowrap; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECURITY NOTE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.security-note {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.75rem; color: var(--faint); margin-top: 14px;
  font-weight: 500;
}
.security-note svg { width: 12px; height: 12px; stroke: var(--faint); fill: none; stroke-width: 2; flex-shrink: 0; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REDIRECT LINK
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.form-redirect {
  text-align: center; font-size: 0.83rem;
  color: var(--muted); margin-top: 20px;
}
.form-redirect a { color: var(--em); font-weight: 600; }
.form-redirect a:hover { text-decoration: underline; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ALERT / NOTICE BOXES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px 14px; border-radius: var(--r-sm);
  font-size: 0.82rem; line-height: 1.55; margin-bottom: 20px;
  border: 1px solid;
}
.alert svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--success-bg); color: var(--success); border-color: var(--em-mid); }
.alert-error   { background: var(--error-bg); color: var(--error); border-color: var(--error-border); }
.alert-info    { background: #edf3ff; color: #2b52b8; border-color: #b8ccf4; }
.alert-warn    { background: var(--warn-bg); color: var(--warn); border-color: #e8c87a; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VERIFICATION PAGE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.verify-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--em-pale); border: 1px solid var(--em-mid);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.verify-icon svg { width: 32px; height: 32px; stroke: var(--em); fill: none; stroke-width: 1.8; }
.verify-icon.pending { background: var(--warn-bg); border-color: #e8c87a; }
.verify-icon.pending svg { stroke: var(--warn); }

.verify-email-display {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 10px 16px;
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  margin: 20px 0;
}
.verify-email-display svg { width: 15px; height: 15px; stroke: var(--muted); fill: none; stroke-width: 2; }

.verify-steps { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.verify-step {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: 0.82rem; color: var(--text-2); line-height: 1.5;
}
.verify-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--em-pale); color: var(--em);
  font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: var(--font-display);
}
.verify-timer {
  font-size: 0.78rem; color: var(--faint); text-align: center; margin-top: 14px;
}
.verify-timer span { color: var(--em); font-weight: 600; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESET PAGE STATES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.success-illustration {
  text-align: center; padding: 10px 0 24px;
}
.success-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--em-pale), #d0ece4);
  border: 1px solid var(--em-mid);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-circle svg { width: 36px; height: 36px; stroke: var(--em); fill: none; stroke-width: 2; }
.success-title { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--dark); margin-bottom: 8px; }
.success-sub { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FORM FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.auth-form-footer {
  border-top: 1px solid var(--border-light);
  padding: 20px 52px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.auth-form-footer p { font-size: 0.73rem; color: var(--faint); }
.auth-form-footer a { color: var(--muted); transition: var(--trans-fast); }
.auth-form-footer a:hover { color: var(--em); }
.auth-form-footer--compact {
  width: 100%;
  max-width: 460px;
  margin: 18px auto 0;
  padding: 16px 0 0;
  justify-content: center;
  text-align: center;
}
.auth-form-footer--compact p:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BACK LINK
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  transition: var(--trans-fast); margin-bottom: 28px;
}
.back-link:hover { color: var(--em); }
.back-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FLOATING INPUT STATES (demo)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.input-states-demo { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ANIMATIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@keyframes slideRight {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { opacity: 0.6; }
  50%  { opacity: 1; }
  100% { opacity: 0.6; }
}

.auth-form-inner > * { animation: fadeUp 0.38s ease both; }
.auth-form-inner > *:nth-child(1) { animation-delay: 0.04s; }
.auth-form-inner > *:nth-child(2) { animation-delay: 0.08s; }
.auth-form-inner > *:nth-child(3) { animation-delay: 0.12s; }
.auth-form-inner > *:nth-child(4) { animation-delay: 0.16s; }
.auth-form-inner > *:nth-child(5) { animation-delay: 0.20s; }

.auth-card > * { animation: fadeUp 0.38s ease both; }
.auth-card > *:nth-child(2) { animation-delay: 0.06s; }
.auth-card > *:nth-child(3) { animation-delay: 0.12s; }
.auth-card > *:nth-child(4) { animation-delay: 0.18s; }

.panel-widget { animation: fadeUp 0.6s 0.15s ease both; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 900px) {
  .auth-split { grid-template-columns: 1fr; }
  .auth-panel { display: none; }
  .auth-form-wrap { border-left: none; }
  .auth-form-inner,
  .auth-form-footer {
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .auth-form-inner { padding: 40px 36px; }
  .auth-form-footer { padding: 16px 36px; }
}
@media (max-width: 520px) {
  .auth-split,
  .auth-page,
  .auth-page.active { min-height: 100svh; }
  .auth-centered {
    padding: 20px 12px 28px;
    align-items: flex-start;
  }
  .auth-form-inner { padding: 32px 20px 24px; }
  .auth-form-footer {
    padding: 14px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .auth-form-footer--compact {
    margin-top: 14px;
    padding-top: 14px;
  }
  .auth-card {
    padding: 32px 20px;
    border-radius: 16px;
  }
  .form-logo { margin-bottom: 24px; }
  .form-logo-image { width: 128px; }
  .form-title { font-size: 1.35rem; }
  .form-subtitle { margin-bottom: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-switcher { gap: 0; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLLBAR
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
* { scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
