html,
body {
  margin: 0;
}

.auth-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.96), rgba(247, 244, 238, 0.98)),
    radial-gradient(circle at 24px 24px, rgba(8, 122, 114, 0.045) 1px, transparent 1.5px);
  background-size: auto, 28px 28px;
  color: #20251f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.auth-card {
  width: min(420px, 100%);
  padding: 28px;
  border: 1px solid #d8dfd6;
  border-radius: 18px;
  background: rgba(255, 252, 245, 0.9);
  box-shadow: 0 18px 50px rgba(30, 44, 34, 0.12);
}

.auth-eyebrow {
  margin: 0 0 6px;
  color: #055b55;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-title {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.02;
}

.auth-copy {
  margin: 0 0 22px;
  color: #69736b;
  font-size: 16px;
  line-height: 1.45;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-label {
  color: #69736b;
  font-size: 13px;
  font-weight: 800;
}

.auth-input {
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  border: 1px solid #d8dfd6;
  border-radius: 999px;
  background: #fffcf5;
  color: #20251f;
  padding: 0 18px;
  font: inherit;
  font-size: 18px;
}

.auth-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(8, 122, 114, 0.24);
}

.auth-submit {
  box-sizing: border-box;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: #20251f;
  color: #fffcf5;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-error {
  min-height: 20px;
  margin: 0;
  color: #a3332a;
  font-size: 14px;
  font-weight: 700;
}
