:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  color: #182026;
  background: #f6f7f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

.login-panel {
  width: min(100%, 420px);
  padding: 32px;
  border: 1px solid #d8ded3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(33, 45, 38, 0.1);
}

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

h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
}

form {
  margin-top: 24px;
}

.field-label {
  display: block;
  margin: 16px 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #31413b;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #c5d0c9;
  border-radius: 6px;
  font: inherit;
}

input[type="email"]:focus,
input[type="password"]:focus {
  outline: 3px solid rgba(50, 100, 90, 0.22);
  border-color: #32645a;
}

.message {
  min-height: 24px;
  margin: 12px 0 16px;
  color: #53615c;
}

button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  color: #f8faf8;
  background: #65726d;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

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