:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #657368;
  --line: #dce5df;
  --bg: #f4f7f2;
  --accent: #176b4d;
}

* {
  box-sizing: border-box;
}

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

button,
input {
  font: inherit;
}

.login-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 18px;
}

.login-panel {
  width: min(100%, 420px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 24px;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: 0;
}

.login-form {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfcfa;
}

input:focus {
  outline: 3px solid rgba(23, 107, 77, .15);
  border-color: var(--accent);
}

button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--accent);
  font-weight: 900;
  cursor: pointer;
}

button:disabled {
  opacity: .7;
  cursor: wait;
}

.status {
  min-height: 18px;
  color: #8b2d2d;
  font-size: 13px;
  font-weight: 800;
}
