:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background-color: #f5f5f7;
  color: #1f1f24;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, #ffffff 0%, #f2f2f5 45%, #ebebf0 100%);
}

.page {
  width: min(90vw, 420px);
}

.card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(20, 20, 43, 0.12);
  display: grid;
  gap: 28px;
}

.card__header {
  display: grid;
  gap: 10px;
}

.card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: #7b7b8c;
}

.card__title {
  font-size: 26px;
  font-weight: 600;
}

.card__subtitle {
  font-size: 14px;
  color: #666679;
}

.card__form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 12px;
  color: #5c5c6d;
}

.field__input {
  border: 1px solid #e2e2ea;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fafafb;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field__input:focus {
  outline: none;
  border-color: #9b9bf8;
  box-shadow: 0 0 0 4px rgba(155, 155, 248, 0.2);
  background: #ffffff;
}

.card__actions {
  display: flex;
  justify-content: flex-end;
}

.button {
  border: none;
  background: #1f1f24;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(31, 31, 36, 0.18);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.status {
  min-height: 20px;
  font-size: 13px;
  color: #2d2d35;
}

.status--error {
  color: #c8354e;
}

.status--success {
  color: #1a7f5a;
}

@media (max-width: 520px) {
  .card {
    padding: 28px;
  }
}
