* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Tahoma", sans-serif;
  background: radial-gradient(circle at top, #e6f3ec, #f8faf9 60%);
  color: #1f2a25;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.card {
  width: min(440px, 100%);
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(18, 38, 26, 0.12);
  display: grid;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 6px;
}

.brand-mark {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #0a4e2b;
}

.brand-subtitle {
  font-size: 15px;
  color: #4b5d54;
}

.form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #2f3f38;
}

.field input {
  border: 1px solid #d7e4dc;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  outline: none;
  border-color: #1f9a5b;
  box-shadow: 0 0 0 3px rgba(31, 154, 91, 0.15);
}

.button {
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background: #0f7a42;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 122, 66, 0.24);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
  box-shadow: none;
}

.status {
  min-height: 18px;
  font-size: 13px;
  margin: 0;
}

.status[data-state="error"] {
  color: #b42318;
}

.status[data-state="success"] {
  color: #0f7a42;
}

.footnote {
  margin: 0;
  font-size: 13px;
  color: #5e6d66;
}
