:root {
  --auth-accent: #2563eb;
  --auth-accent-hover: #1d4ed8;
  --auth-bg: #0f1117;
  --auth-panel-bg: #161a22;
  --auth-card-bg: #1c212b;
  --auth-border: #2a3140;
  --auth-text: #eef0f3;
  --auth-muted: #9ca3af;
  --auth-visual-blue: #1e4fd6;
  --auth-font: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body.auth-page {
  font-family: var(--auth-font);
  min-height: 100vh;
  display: flex;
  background: var(--auth-bg);
  color: var(--auth-text);
}

.auth-visual {
  flex: 1.1;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--auth-visual-blue);
}

.auth-visual-logo {
  position: absolute;
  top: 28px;
  left: 32px;
  z-index: 5;
  height: 120px;
  width: auto;
}

.auth-carousel {
  position: absolute;
  inset: 0;
}

.auth-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.auth-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 79, 214, 0.88) 0%, rgba(15, 40, 120, 0.75) 100%);
}

.auth-slide.active { opacity: 1; z-index: 1; }

.auth-slide-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 88px;
  z-index: 2;
  max-width: 420px;
  color: #fff;
}

.auth-slide-tag {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.auth-slide-date {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 14px;
}

.auth-slide-content h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.auth-slide-content p {
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.92;
}

.auth-carousel-dots {
  position: absolute;
  left: 32px;
  bottom: 36px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.auth-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s, background 0.2s;
}

.auth-dot.active {
  background: #fff;
  transform: scale(1.15);
}

.auth-panel {
  flex: 0 0 520px;
  max-width: 520px;
  width: 100%;
  min-height: 100vh;
  background: var(--auth-panel-bg);
  display: flex;
  flex-direction: column;
  padding: 40px 48px 28px;
  overflow-y: auto;
}

.auth-panel-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.auth-panel-logo {
  display: block;
  height: 110px;
  width: auto;
  margin: 0 auto 28px;
}

.auth-card {
  background: var(--auth-card-bg);
  border: 1px solid var(--auth-border);
  border-radius: 10px;
  padding: 28px 28px 24px;
}

.auth-eyebrow {
  font-size: 13px;
  color: var(--auth-muted);
  margin-bottom: 6px;
}

.auth-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
}

.auth-title--solo {
  text-align: center;
  margin-bottom: 28px;
}

.auth-field {
  margin-bottom: 18px;
}

.auth-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--auth-muted);
  margin-bottom: 8px;
}

.auth-field label a {
  color: var(--auth-accent);
  text-decoration: none;
  font-size: 12px;
}

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

.auth-field input,
.auth-field select,
.auth-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--auth-border);
  border-radius: 6px;
  background: #12151c;
  color: var(--auth-text);
  font-family: var(--auth-font);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s;
}

.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus {
  border-color: var(--auth-accent);
}

.auth-field textarea {
  min-height: 72px;
  resize: vertical;
}

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.auth-row-3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 14px;
}

.auth-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--auth-muted);
  margin-bottom: 22px;
  cursor: pointer;
}

.auth-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--auth-accent);
}

.auth-btn {
  width: 100%;
  padding: 13px 20px;
  border: none;
  border-radius: 6px;
  background: var(--auth-accent);
  color: #fff;
  font-family: var(--auth-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.auth-btn:hover { background: var(--auth-accent-hover); }

.auth-btn:active { transform: scale(0.99); }

.auth-hint {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #fca5a5;
  font-size: 12px;
  display: none;
}

.auth-hint.show { display: block; }

.auth-demo-box {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(49, 151, 149, 0.12);
  border: 1px solid rgba(49, 151, 149, 0.28);
  font-size: 12px;
  line-height: 1.65;
  color: #99f6e4;
}
.auth-demo-box strong { color: #5eead4; font-weight: 600; }
.auth-demo-box code {
  background: rgba(0,0,0,.25);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11.5px;
}

.auth-footer {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: var(--auth-muted);
}

.auth-footer a {
  color: var(--auth-accent);
  text-decoration: none;
  font-weight: 500;
}

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

.auth-lang {
  margin-top: auto;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--auth-muted);
  position: relative;
}

.auth-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--auth-text);
  font-family: var(--auth-font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 999px;
  transition: color 0.15s;
}

.auth-lang-btn:hover {
  background: none;
  color: var(--auth-accent, #3b82f6);
}

.auth-lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.auth-lang-caret {
  font-size: 10px;
  opacity: 0.7;
  line-height: 1;
}

.auth-lang-menu {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  min-width: 168px;
  background: #1a2332;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  z-index: 20;
}

.auth-lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 9px 12px;
  border-radius: 8px;
  color: #e8eef7;
  background: none;
  border: none;
  font-family: var(--auth-font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.15s;
}

.auth-lang-menu button:hover,
.auth-lang-menu button.active {
  background: none;
  color: #93c5fd;
}

.auth-section {
  margin-bottom: 26px;
}

.auth-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--auth-text);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--auth-border);
}

.auth-phone {
  display: flex;
  gap: 8px;
}

.auth-phone select {
  width: 108px;
  flex-shrink: 0;
}

.auth-phone input { flex: 1; }

.auth-pass-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.auth-btn-ghost {
  padding: 6px 10px;
  border: 1px solid var(--auth-border);
  border-radius: 6px;
  background: #12151c;
  color: var(--auth-muted);
  font-family: var(--auth-font);
  font-size: 11px;
  cursor: pointer;
}

.auth-btn-ghost:hover {
  border-color: var(--auth-accent);
  color: var(--auth-accent);
}

.auth-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.auth-toggle-row p {
  font-size: 12px;
  color: var(--auth-muted);
  line-height: 1.5;
  max-width: 280px;
}

.auth-switch {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  border: none;
  background: #3b4252;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.auth-switch.is-on { background: var(--auth-accent); }

.auth-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s;
}

.auth-switch.is-on::after { transform: translateX(20px); }

.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--auth-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.auth-terms input { margin-top: 3px; accent-color: var(--auth-accent); }

.auth-terms a { color: var(--auth-accent); }

.auth-panel--register {
  flex: 1;
  max-width: 720px;
  background: #fff;
  color: #2d3748;
  padding: 48px 56px 28px;
}

.auth-panel--register .auth-panel-inner,
.auth-register-inner {
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
  justify-content: flex-start;
  padding-top: 8px;
}

.reg-title {
  font-size: 28px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.reg-steps {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 320px;
  margin: 0 0 36px;
}

.reg-step-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 2px;
  background: #d1d5db;
  transform: translateY(-50%);
  z-index: 0;
}

.reg-step {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  background: #fff;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--auth-font);
  cursor: default;
}

.reg-step.is-active {
  background: #0d9488;
  border-color: #0d9488;
  color: #fff;
}

.reg-step.is-done {
  background: #0d9488;
  border-color: #0d9488;
  color: #fff;
}

.reg-block-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 6px 12px;
  margin: 8px 0 18px;
}

.reg-account-type {
  display: flex;
  gap: 28px;
  margin-bottom: 28px;
}

.reg-radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  user-select: none;
}

.reg-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reg-radio-ui {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.reg-radio input:checked + .reg-radio-ui {
  background: #0d9488;
  border-color: #0d9488;
}

.reg-radio input:checked + .reg-radio-ui::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.reg-pane { animation: regFade 0.2s ease; }
@keyframes regFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.reg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}

.reg-corp-only[hidden],
.reg-row[hidden],
.reg-pane[hidden],
.reg-field select[hidden],
.reg-field input[hidden] {
  display: none !important;
}

.reg-field {
  margin-bottom: 22px;
}

.reg-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  margin-bottom: 8px;
}

.reg-hint-inline {
  font-weight: 400;
  color: #c0c4cc;
  margin-left: 6px;
}

.reg-field input,
.reg-field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d1d5db;
  border-radius: 0;
  background: transparent;
  padding: 8px 0 10px;
  font-size: 15px;
  font-family: var(--auth-font);
  color: #1f2937;
  outline: none;
  transition: border-color 0.15s;
}

.reg-field input::placeholder,
.reg-field select:invalid {
  color: #9ca3af;
}

.reg-field select {
  color: #1f2937;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239ca3af' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 22px;
}

.reg-field input:focus,
.reg-field select:focus {
  border-bottom-color: #0d9488;
}

.reg-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #d1d5db;
}

.reg-phone select {
  width: auto;
  min-width: 108px;
  max-width: 130px;
  border: none;
  border-bottom: none;
  padding: 8px 0 10px;
  background: transparent;
  font-size: 14px;
  color: #1f2937;
  outline: none;
}

.reg-phone input {
  flex: 1;
  border: none;
  border-bottom: none;
  padding: 8px 0 10px;
}

.reg-phone:focus-within {
  border-bottom-color: #0d9488;
}

.reg-link-btn {
  margin-top: 8px;
  border: none;
  background: none;
  color: #0d9488;
  font-size: 12px;
  font-family: var(--auth-font);
  cursor: pointer;
  padding: 0;
}

.reg-pass-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.reg-pass-wrap input {
  padding-right: 36px;
}

.reg-pass-toggle {
  position: absolute;
  right: 0;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  border-radius: 6px;
  transition: color 0.15s;
}

.reg-pass-toggle:hover {
  color: #0d9488;
}

.reg-pass-toggle svg[hidden] {
  display: none !important;
}

.reg-pass-strength {
  margin-top: 10px;
}

.reg-pass-strength-bar {
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.reg-pass-strength-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width 0.2s ease, background 0.2s ease;
  background: #e5e7eb;
}

.reg-pass-strength[data-level="1"] .reg-pass-strength-bar span {
  width: 25%;
  background: #ef4444;
}
.reg-pass-strength[data-level="2"] .reg-pass-strength-bar span {
  width: 50%;
  background: #f59e0b;
}
.reg-pass-strength[data-level="3"] .reg-pass-strength-bar span {
  width: 75%;
  background: #84cc16;
}
.reg-pass-strength[data-level="4"] .reg-pass-strength-bar span {
  width: 100%;
  background: #16a34a;
}

.reg-pass-strength-label {
  margin-top: 6px;
  font-size: 12px;
  color: #9ca3af;
}

.reg-pass-strength[data-level="1"] .reg-pass-strength-label { color: #ef4444; }
.reg-pass-strength[data-level="2"] .reg-pass-strength-label { color: #d97706; }
.reg-pass-strength[data-level="3"] .reg-pass-strength-label { color: #65a30d; }
.reg-pass-strength[data-level="4"] .reg-pass-strength-label { color: #15803d; }

.reg-pass-strength-label strong {
  font-weight: 600;
}

.reg-note {
  margin: 8px 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: #6b7280;
}

.reg-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 16px;
  cursor: pointer;
}

.reg-check input {
  margin-top: 3px;
  accent-color: #0d9488;
}

.reg-check a {
  color: #0d9488;
  text-decoration: none;
}

.reg-check a:hover { text-decoration: underline; }

.reg-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.reg-btn-next {
  min-width: 160px;
  padding: 14px 36px;
  border: none;
  border-radius: 999px;
  background: #8cc63f;
  color: #fff;
  font-family: var(--auth-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}

.reg-btn-next:hover { background: #7ab535; }
.reg-btn-next:active { transform: scale(0.98); }

.reg-btn-back {
  border: none;
  background: none;
  color: #6b7280;
  font-family: var(--auth-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 14px;
  margin-right: auto;
}

.reg-btn-back:hover { color: #374151; }

.reg-footer {
  margin-top: 28px;
  color: #6b7280;
}

.reg-footer a {
  color: #0d9488;
  font-weight: 600;
}

.auth-panel--register .auth-hint {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
  color: #b91c1c;
  margin-bottom: 16px;
}

.auth-panel--register .auth-lang {
  color: #6b7280;
}

.auth-panel--register .auth-lang-btn {
  color: #374151;
}

.auth-panel--register .auth-lang-btn:hover {
  background: none;
  color: #0d9488;
}

.auth-panel--register .auth-lang-menu {
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.auth-panel--register .auth-lang-menu button {
  color: #1f2937;
}

.auth-panel--register .auth-lang-menu button:hover,
.auth-panel--register .auth-lang-menu button.active {
  background: none;
  color: #0d9488;
}

@media (max-width: 1024px) {
  .auth-panel--register {
    max-width: none;
    padding: 32px 24px 24px;
  }
  .reg-row { grid-template-columns: 1fr; }
  .reg-actions { flex-wrap: wrap; }
  .reg-btn-next { width: 100%; }
}

.auth-label-hint {
  font-size: 11px;
  color: var(--auth-muted);
  font-weight: 400;
}

.reg-legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.55);
}

.reg-legal-overlay[hidden] {
  display: none !important;
}

.reg-legal-dialog {
  width: min(720px, 100%);
  max-height: min(82vh, 820px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.reg-legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: #1f2937;
  color: #fff;
}

.reg-legal-header h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--auth-font);
}

.reg-legal-close {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.reg-legal-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.reg-legal-body {
  padding: 20px 22px 28px;
  overflow: auto;
  color: #374151;
  font-size: 13px;
  line-height: 1.65;
  font-family: var(--auth-font);
}

.reg-legal-body h3 {
  margin: 18px 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.reg-legal-body h3:first-child {
  margin-top: 0;
}

.reg-legal-body p {
  margin: 0 0 10px;
}

.reg-legal-lead {
  font-weight: 600;
  color: #111827;
}

.reg-legal-loading {
  color: #9ca3af;
}

/* ========== Şifre sıfırlama (profesyonel) ========== */
.auth-page--reset {
  --reset-font: 'DM Sans', 'Instrument Sans', system-ui, sans-serif;
  --reset-display: 'Instrument Sans', 'DM Sans', system-ui, sans-serif;
  --reset-accent: #3b82f6;
  --reset-accent-2: #2563eb;
  --reset-surface: #141820;
  --reset-card: #1a2030;
  --reset-line: rgba(148, 163, 184, 0.14);
  font-family: var(--reset-font);
}

.auth-page--reset .auth-panel {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(37, 99, 235, 0.12), transparent 55%),
    linear-gradient(180deg, #0c0f16 0%, #10141d 100%);
}

.auth-page--reset .auth-panel-inner.reset-shell {
  max-width: 420px;
  animation: resetIn 0.45s ease both;
}

@keyframes resetIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.reset-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--reset-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #e8eefc;
}

.reset-brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.reset-stage {
  background: linear-gradient(180deg, rgba(30, 36, 52, 0.95), rgba(22, 26, 38, 0.98));
  border: 1px solid var(--reset-line);
  border-radius: 18px;
  padding: 28px 26px 26px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 48px rgba(0, 0, 0, 0.35);
}

.reset-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 10px;
}

.reset-title {
  font-family: var(--reset-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #f8fafc;
  margin: 0 0 10px;
}

.reset-lead {
  margin: 0 0 22px;
  color: #94a3b8;
  font-size: 14.5px;
  line-height: 1.55;
}

.reset-lead strong { color: #e2e8f0; font-weight: 600; }

.reset-account {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.12);
}

.reset-account-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.reset-account strong {
  font-size: 14px;
  color: #e2e8f0;
  word-break: break-all;
  font-weight: 600;
}

.reset-form { margin-top: 4px; }

.reset-field { margin-bottom: 18px; }

.reset-field label {
  display: block;
  font-size: 13px;
  font-weight: 550;
  color: #94a3b8;
  margin-bottom: 8px;
}

.reset-input {
  position: relative;
  display: flex;
  align-items: center;
}

.reset-input input {
  width: 100%;
  height: 48px;
  padding: 0 48px 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #0b0f17;
  color: #f1f5f9;
  font-family: var(--reset-font);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.reset-input input::placeholder { color: #64748b; }

.reset-input input:focus {
  border-color: rgba(59, 130, 246, 0.7);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
  background: #0a0e16;
}

.reset-eye {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0 !important;
  border-radius: 10px;
  background: transparent !important;
  color: #94a3b8 !important;
  cursor: pointer;
  padding: 0 !important;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none !important;
  font: inherit;
  line-height: 0;
}

.reset-eye:hover {
  color: #e2e8f0 !important;
  background: rgba(148, 163, 184, 0.1) !important;
}

.reset-eye:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.7);
  outline-offset: 1px;
}

.reset-meter {
  margin-top: 12px;
}

.reset-meter-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.reset-meter-track i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}

.reset-meter[data-level="1"] .reset-meter-track i:nth-child(1) { background: #f87171; }
.reset-meter[data-level="2"] .reset-meter-track i:nth-child(-n+2) { background: #fbbf24; }
.reset-meter[data-level="3"] .reset-meter-track i:nth-child(-n+3) { background: #60a5fa; }
.reset-meter[data-level="4"] .reset-meter-track i { background: #4ade80; }

.reset-meter-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
}

.reset-meter-meta strong {
  font-size: 12px;
  font-weight: 650;
  color: #cbd5e1;
}

.reset-meter[data-level="1"] .reset-meter-meta strong { color: #fca5a5; }
.reset-meter[data-level="2"] .reset-meter-meta strong { color: #fcd34d; }
.reset-meter[data-level="3"] .reset-meter-meta strong { color: #93c5fd; }
.reset-meter[data-level="4"] .reset-meter-meta strong { color: #86efac; }

.reset-checks {
  list-style: none;
  margin: 14px 0 0;
  padding: 12px;
  display: grid;
  gap: 8px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.reset-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #64748b;
  transition: color 0.15s ease;
}

.reset-checks li span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(148, 163, 184, 0.28);
  background: transparent;
  flex: 0 0 auto;
  position: relative;
  transition: all 0.15s ease;
}

.reset-checks li.is-ok { color: #bbf7d0; }

.reset-checks li.is-ok span {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.18);
}

.reset-checks li.is-ok span::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #4ade80;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.reset-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: 6px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: #fff !important;
  font-family: var(--reset-font);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.reset-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.34);
}

.reset-btn:active { transform: translateY(0); }
.reset-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.reset-btn--ghost {
  margin-top: 12px;
  background: transparent;
  color: #cbd5e1 !important;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: none;
}

.reset-btn--ghost:hover {
  background: rgba(148, 163, 184, 0.08);
  filter: none;
  box-shadow: none;
}

.reset-status {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 700;
}

.reset-status--ok {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08);
}

.reset-status--bad {
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  box-shadow: 0 0 0 6px rgba(248, 113, 113, 0.08);
}

.reset-spinner {
  width: 36px;
  height: 36px;
  margin: 8px auto 20px;
  border-radius: 50%;
  border: 3px solid rgba(148, 163, 184, 0.18);
  border-top-color: #60a5fa;
  animation: resetSpin 0.7s linear infinite;
}

@keyframes resetSpin {
  to { transform: rotate(360deg); }
}

.reset-footer {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.reset-footer a,
.reset-text-link {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
}

.reset-footer a:hover,
.reset-text-link:hover { color: #bfdbfe; text-decoration: underline; }

.reset-text-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  text-align: center;
  width: 100%;
}

.auth-page--reset .auth-hint.show {
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .auth-page--reset .reset-title { font-size: 24px; }
  .auth-page--reset .auth-visual-logo { height: 72px; }
}
