/* Auth pages: login, register */

.auth-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.auth-card h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  color: var(--text-heading);
}

.auth-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 24px;
}

.auth-form label {
  display: block;
  margin-bottom: 20px;
}

.auth-form label span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.auth-form input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--border-accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.auth-form .btn-block {
  width: 100%;
  margin-top: 8px;
  margin-bottom: 20px;
}

.auth-link {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.auth-link a {
  color: var(--accent);
  font-weight: 600;
}

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

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}

.auth-checkbox input {
  width: auto;
  margin-top: 4px;
  flex-shrink: 0;
}

.auth-checkbox span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

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

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