/* RESSENHERA · auth.css (index.html) */
.auth-wrap { min-height: 100dvh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.auth-card { width: min(100%, 400px); display: flex; flex-direction: column; align-items: center; }

.auth-logo {
  width: 96px; height: 96px; border-radius: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center; font-size: 52px;
  box-shadow: 0 0 0 3px var(--bg), 0 0 42px rgba(46, 230, 168, 0.35);
  margin-bottom: 18px;
}
.wordmark { font-size: 34px; font-weight: 900; font-style: italic; letter-spacing: -0.5px; }
.wordmark b { color: var(--accent); }
.auth-sub { color: var(--muted); font-size: 13.5px; text-align: center; margin: 6px 0 26px; }

.auth-tabs {
  display: flex; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 4px; width: 100%; margin-bottom: 18px;
}
.auth-tabs button { flex: 1; padding: 10px; border-radius: var(--r-sm); font-weight: 800; color: var(--muted); transition: 0.2s; }
.auth-tabs button.on { background: var(--accent-dim); color: var(--accent); }

.auth-form { width: 100%; display: flex; flex-direction: column; gap: 12px; }

.divider { display: flex; align-items: center; gap: 12px; width: 100%; margin: 20px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.divider span { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; color: var(--muted); }

.btn-google {
  width: 100%; background: #fff; color: #111; font-weight: 800; padding: 13px;
  border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform 0.12s;
}
.btn-google:active { transform: scale(0.98); }
.btn-google img { width: 20px; height: 20px; }

.admin-toggle {
  margin-top: 18px; color: var(--muted); font-size: 11px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; display: flex; align-items: center; gap: 8px;
}
.admin-toggle:hover { color: var(--accent); }
#admin-chevron { transition: transform 0.3s; font-size: 9px; }

.auth-error { color: var(--danger); font-size: 12.5px; text-align: center; min-height: 16px; margin-top: 10px; width: 100%; }
.auth-foot { margin-top: 26px; color: var(--muted); opacity: 0.6; font-size: 10.5px; text-align: center; }
