:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f7f6;
  color: #10201d;
}

body {
  margin: 0;
}

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

.panel {
  width: min(440px, 100%);
  background: #ffffff;
  border: 1px solid #d9e4e1;
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 18px 60px rgba(20, 48, 44, 0.12);
}

.eyebrow {
  margin: 0 0 8px;
  color: #0f766e;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: 30px;
}

.muted {
  color: #5b6f6a;
  line-height: 1.5;
}

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

label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

input {
  min-height: 44px;
  border: 1px solid #b7c7c3;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 16px;
}

button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: #0f766e;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.status {
  min-height: 22px;
  margin-top: 18px;
  color: #1f403a;
  line-height: 1.4;
}

