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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

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

.card {
  width: min(100%, 620px);
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid #d8e0ea;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(15, 30, 49, 0.12);
}

.eyebrow {
  margin: 0 0 10px;
  color: #d8213c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1.05;
}

h2 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.lead,
.support,
.notice p {
  color: #566276;
  line-height: 1.55;
}

.notice {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid #d8213c;
  border-radius: 12px;
  background: #f8fafc;
}

.notice p {
  margin-bottom: 0;
}

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

label {
  font-weight: 700;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #b8c3d1;
  border-radius: 10px;
  background: #ffffff;
  color: #111b2d;
  font: inherit;
}

input:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(216, 33, 60, 0.28);
  outline-offset: 2px;
}

.confirmation {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  color: #39465a;
  font-weight: 600;
  line-height: 1.45;
}

.confirmation input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: #d8213c;
}

button {
  min-height: 50px;
  border: 0;
  border-radius: 12px;
  background: #d8213c;
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

button:hover {
  background: #b91831;
}

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

.status {
  min-height: 24px;
  margin-top: 18px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.45;
}

.status:not(:empty) {
  padding: 14px 16px;
}

.status.pending {
  background: #eef5ff;
  color: #174a88;
}

.status.success {
  background: #e9f8ef;
  color: #17633a;
}

.status.error {
  background: #fff0f2;
  color: #9c1830;
}

.support {
  margin: 24px 0 0;
  font-size: 0.92rem;
}
