.auth-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  background: var(--bg);
}

.auth-container {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.auth-logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--highlight);
}

.auth-tagline {
  font-size: 0.8rem;
  color: var(--accent-muted);
  text-align: center;
  margin-top: -12px;
}

.auth-tabs {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
  width: 100%;
}

.auth-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--accent-muted);
  padding: 10px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.auth-tab.active {
  background: var(--highlight);
  color: var(--bg);
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.auth-form.active { display: flex; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.label-hint {
  font-weight: 400;
  color: #555;
  font-size: 0.75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group input::placeholder { color: #444; }

.form-error {
  font-size: 0.8rem;
  color: var(--danger);
  min-height: 18px;
  text-align: center;
}

.auth-back {
  font-size: 0.8rem;
  color: var(--accent-muted);
}
.auth-back a:hover { color: var(--highlight); }

/* ============================
   VERIFY PAGE
   ============================ */
.verify-card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.verify-icon { font-size: 2.5rem; }

.verify-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--highlight);
}

.verify-sub {
  font-size: 0.85rem;
  color: var(--accent-muted);
  line-height: 1.6;
}

.otp-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.otp-input {
  width: 46px;
  height: 56px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--highlight);
  border-radius: 10px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  caret-color: transparent;
}
.otp-input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.15);
}
.otp-input:not(:placeholder-shown) { border-color: #444; }

.otp-sep {
  color: var(--border);
  font-size: 1.2rem;
  margin: 0 2px;
  user-select: none;
}

.resend-area {
  font-size: 0.8rem;
  color: var(--accent-muted);
}

.resend-btn {
  background: none;
  border: none;
  color: #7c3aed;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.resend-btn:hover { color: #a78bfa; }

.verify-hint {
  font-size: 0.75rem;
  color: #444;
  line-height: 1.7;
}
.verify-hint a { color: #666; }
.verify-hint a:hover { color: var(--accent-muted); }
