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

* { box-sizing: border-box; }

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

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

.login-card {
  width: min(100%, 420px);
  padding: 36px;
  border: 1px solid #ddcfbf;
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: 0 24px 80px rgb(74 48 30 / 12%);
}

.login-card > img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.eyebrow {
  margin: 16px 0 4px;
  color: #7c4a2d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 { margin: 0; font-size: 2rem; }
.intro { color: #69584c; line-height: 1.5; }

form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
}

input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cdbba9;
  border-radius: 10px;
  background: white;
  color: inherit;
  font: inherit;
}

input:focus {
  outline: 3px solid rgb(151 91 52 / 20%);
  border-color: #975b34;
}

button {
  padding: 12px 16px;
  border: 1px solid #6f3f24;
  border-radius: 10px;
  background: #6f3f24;
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

button.secondary {
  background: transparent;
  color: #6f3f24;
}

button:disabled { cursor: wait; opacity: 0.65; }
.secondary-form { padding-top: 20px; border-top: 1px solid #eadfd3; }
.status { min-height: 24px; margin: 20px 0 0; color: #69584c; }
.status.error { color: #a32020; }
