/* Auth pages — login, register, reset-password, reset-password-sent
   Extracted from duplicated inline <style> blocks (L12 fix). */

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

.auth-card {
  width: 100%; max-width: 400px; padding: 40px;
  background: var(--mt-card-bg); border-radius: var(--mt-card-radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 1px solid var(--mt-border);
}

.auth-card .login-logo { text-align: center; margin-bottom: 28px; }
.auth-card .login-logo svg { color: var(--mt-primary); }
.auth-card .login-logo h1 { font-size: 20px; font-weight: 700; margin: 12px 0 4px; color: var(--mt-text); }
.auth-card .login-logo p { font-size: 13px; color: var(--mt-text-muted); margin: 0; }

.auth-error {
  background: #fee2e2; color: #dc2626; padding: 10px 14px;
  border-radius: var(--mt-btn-radius); font-size: 13px; margin-bottom: 16px; display: none;
}

.auth-success {
  background: #d1fae5; color: #065f46; padding: 10px 14px;
  border-radius: var(--mt-btn-radius); font-size: 13px; margin-bottom: 16px; display: none;
}

.auth-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--mt-text-muted); }
.auth-footer a { color: var(--mt-primary); text-decoration: none; }
