:root {
  --gold: #D4A047;
  --navy: #071425;
  --cream: #F7F3EB;
  --border: #E6D9BE;
}

.auth-body {
  background: var(--cream);
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.auth-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  width: min(420px, 90vw);
  box-shadow: 0 18px 45px rgba(7, 20, 37, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.95rem;
}

button {
  border: none;
  background: var(--gold);
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

button.secondary {
  background: transparent;
  border: 1px solid var(--navy);
}

.note {
  font-size: 0.9rem;
  color: #4E5968;
}
