* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(12, 111, 89, 0.16), transparent 28rem),
    linear-gradient(135deg, #f7fbfa 0%, #eef5f4 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.hero-card {
  width: min(100%, 34rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 74, 67, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 24px 80px rgba(18, 39, 57, 0.16);
  padding: 2rem;
}

.brand-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.brand-mark {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: #0c6f59;
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0;
  color: #0c6f59;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  margin: 0.15rem 0 0;
  color: #182033;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3rem);
}

.lede {
  margin: 1.25rem 0 1.5rem;
  color: #4d5b6d;
  line-height: 1.6;
}

.login-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #f8fbfa;
  border: 1px solid #dce8e5;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #243447;
  font-weight: 700;
}

input {
  width: 100%;
  border: 1px solid #ccd9d7;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font: inherit;
  color: #172033;
  background: white;
}

button {
  border: 0;
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
  font: inherit;
  font-weight: 800;
  color: white;
  background: #0c6f59;
  cursor: pointer;
}

button:hover {
  background: #095c4a;
}

.status-panel {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #526174;
  font-size: 0.92rem;
}

.status-panel a {
  color: #0c6f59;
  font-weight: 700;
  text-decoration: none;
}

.status-dot {
  width: 0.7rem;
  height: 0.7rem;
  display: inline-block;
  border-radius: 999px;
  margin-right: 0.4rem;
  background: #17a673;
}
