:root {
  color-scheme: light;
  --bg: #f5f6f3;
  --surface: #ffffff;
  --text: #17201b;
  --muted: #667269;
  --line: #d9ded6;
  --green: #2f7d64;
  --coral: #c65d4b;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.auth-shell {
  width: min(100%, 440px);
  padding: 24px;
}

.auth-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(23, 32, 27, 0.06);
  padding: 28px;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
p {
  margin: 0;
}

h1 {
  font-size: 28px;
  line-height: 1.1;
}

.auth-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.login-error {
  border: 1px solid rgba(198, 93, 75, 0.34);
  border-radius: 8px;
  background: rgba(198, 93, 75, 0.08);
  color: #8f382c;
  font-size: 13px;
  line-height: 1.45;
  padding: 10px 12px;
}

.google-login {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.google-login:hover {
  border-color: rgba(47, 125, 100, 0.34);
  background: #eef2eb;
  color: var(--green);
}
