:root {
  --primary-red: #c3282b;
  --primary-gold: #f4d03f;
  --primary-dark: #2c1810;
  --primary-light: #f8f1e5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Noto Serif SC", serif;
  background: linear-gradient(135deg, #f5f1e8 0%, #e8dfc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--primary-dark);
}

.card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 253, 248, 0.97);
  border: 2px solid var(--primary-red);
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(44, 24, 16, 0.18);
  padding: 28px;
}

h1 {
  margin: 0 0 12px;
  color: var(--primary-red);
  text-align: center;
}

.subtitle {
  margin: 0 0 20px;
  text-align: center;
  color: #7d5c4e;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

input,
select,
button {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d3c4a7;
  font: inherit;
}

button {
  margin-top: 8px;
  border: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--primary-red), #8b1e20);
  cursor: pointer;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.group {
  margin-bottom: 14px;
}

.hidden {
  display: none;
}

.message {
  min-height: 20px;
  margin: 8px 0 14px;
  color: #b3261e;
  font-size: 14px;
}

.success {
  color: #2e7d32;
}

.links {
  margin-top: 14px;
  text-align: center;
}

.links a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 700;
}
