/*
 * Auth pages — standalone styles (login, register, password)
 * Loaded by layouts/auth.html.erb — does NOT include alta.css
 */

:root {
  --auth-bg: #101014;
  --auth-card-bg: #343a40;
  --auth-text: #dee2e6;
  --auth-text-secondary: #adb5bd;
  --auth-text-muted: #868e96;
  --auth-text-hover: #fff;
}

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

.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
}

.auth-card {
  background: var(--auth-card-bg);
  border-radius: 0.5rem;
  padding: 2rem 2.5rem;
  width: 100%;
  max-width: 420px;
}

.auth-logo {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--auth-text);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.auth-logo:hover { color: var(--auth-text-hover); }

.auth-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--auth-text);
  font-size: 1.4rem;
}

.auth-form .form-label {
  color: var(--auth-text-secondary);
  font-size: 0.85rem;
}

.auth-links {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.auth-links a { color: var(--auth-text-secondary); }
.auth-links a:hover { color: var(--auth-text-hover); }
.auth-links .sep { color: var(--auth-text-muted); margin: 0 0.5rem; }
