/* Landing/login page styles. Extracted from the inline <style> block in
   index.html so the CSP can drop 'unsafe-inline' from style-src. */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: #f8f9fa;
  color: #212529;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.login-card {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.login-card h1 { font-size: 22px; margin-bottom: 8px; }
.login-card p { color: #6c757d; font-size: 14px; margin-bottom: 24px; }
.btn-login {
  display: inline-block;
  padding: 12px 32px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-login:hover { background: #1d4ed8; }
.spinner {
  display: none;
  margin: 20px auto;
  border: 3px solid #dee2e6;
  border-top-color: #2563eb;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.status { color: #6c757d; font-size: 13px; margin-top: 12px; display: none; }
.error { color: #dc2626; font-size: 13px; margin-top: 12px; display: none; }
