:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f4f6f8;
  color: #17212b;
}

body {
  margin: 0;
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  box-sizing: border-box;
}

.status-card {
  width: min(100%, 520px);
  padding: 40px;
  border: 1px solid #dce2e8;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgb(23 33 43 / 8%);
}

.eyebrow {
  margin: 0 0 8px;
  color: #28784d;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
}

.status-card > :last-child {
  margin-bottom: 0;
  color: #52616f;
  line-height: 1.7;
}

.login-form {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.login-form label {
  display: grid;
  gap: 8px;
  color: #344452;
  font-weight: 600;
}

.login-form input {
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  border: 1px solid #b9c4ce;
  border-radius: 8px;
  font: inherit;
}

button {
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: #28784d;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.secondary-button {
  margin-top: 16px;
  background: #52616f;
}

.error-message {
  padding: 12px;
  border-radius: 8px;
  background: #fff1f0;
  color: #a1231b;
}

