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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgb(75 163 113 / 16%), transparent 34%),
    radial-gradient(circle at 80% 85%, rgb(35 105 76 / 12%), transparent 30%),
    #f2f5f3;
}

.login-card {
  width: min(100%, 430px);
  padding: 38px;
  border: 1px solid #d9e3dc;
  border-radius: 24px;
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 24px 70px rgb(31 70 48 / 13%);
}

.eyebrow {
  margin: 0 0 8px;
  color: #27764c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.08;
}

.login-copy {
  margin: 14px 0 28px;
  color: #607168;
  line-height: 1.55;
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd8d0;
  border-radius: 12px;
  background: #fff;
  color: inherit;
  font: inherit;
}

input:focus {
  outline: 3px solid rgb(52 150 93 / 18%);
  border-color: #34965d;
}

button {
  min-height: 48px;
  border: 0;
  border-radius: 12px;
  background: #27764c;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.login-status {
  min-height: 22px;
  margin: 18px 0 0;
  color: #b12c2c;
  font-size: 14px;
}

.login-status.success {
  color: #27764c;
}

.secondary-link {
  display: inline-block;
  margin-top: 6px;
  color: #27764c;
  font-size: 14px;
  font-weight: 800;
}
