/* Páginas de autenticación: login, registro, restablecer, confirmar.
   Estas vistas no usan _Layout.cshtml (Layout = null), así que cargan
   site.css + este archivo por su cuenta. */

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

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
}

.auth-card.wide { max-width: 620px; }

.auth-logo { display: flex; justify-content: center; margin-bottom: 22px; }
.auth-logo img { max-width: 230px; width: 100%; height: auto; }

.auth-title { text-align: center; font-size: 19px; margin-bottom: 22px; }

.auth-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  font-size: 13px;
}
.auth-foot a { color: var(--teal-dark); text-decoration: none; }
html[data-theme="dark"] .auth-foot a { color: #4FD8AE; }

.auth-theme-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
}
