:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f7f9;
  color: #18202f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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

.login-card {
  width: min(420px, 100%);
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(28, 36, 52, 0.06);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #68758a;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1;
}

label {
  display: grid;
  gap: 6px;
  color: #344056;
  font-size: 14px;
  font-weight: 650;
}

input,
button {
  min-height: 42px;
  border-radius: 6px;
  font: inherit;
}

input {
  border: 1px solid #c8d0dc;
  padding: 9px 11px;
}

button {
  border: 0;
  background: #14635a;
  color: #ffffff;
  font-weight: 750;
  cursor: pointer;
}

.status {
  min-height: 20px;
  margin: 0;
  color: #b42318;
  font-weight: 650;
}
