@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:wght@500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #F2EDE6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: #1C1510;
}
.card {
  background: white;
  border: 1px solid #D0C9BE;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(28,21,16,0.08);
}
.brand { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; color: #1C1510; margin-bottom: 0.25rem; font-weight: 700; }
.subtitle { font-size: 0.85rem; color: #7A6E62; margin-bottom: 1.75rem; }
h2 { font-size: 1.05rem; color: #1C1510; margin-bottom: 1.25rem; font-weight: 600; }
label { display: block; font-size: 0.82rem; color: #5A4E42; margin-bottom: 0.35rem; font-weight: 500; }
input[type="email"], input[type="password"], input[type="text"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #D0C9BE;
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 1rem;
  background: #FAFAF6;
  color: #1C1510;
  font-family: inherit;
}
input:focus { border-color: #1E3A6E; background: white; }
button.primary {
  width: 100%;
  padding: 0.8rem;
  background: #1E3A6E;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s;
  font-family: inherit;
}
button.primary:hover:not(:disabled) { background: #142B55; }
button.primary:disabled { opacity: 0.5; cursor: wait; }
.link { color: #1E3A6E; text-decoration: none; font-size: 0.85rem; }
.link:hover { text-decoration: underline; }
.row-links { display: flex; justify-content: space-between; margin-top: 1rem; font-size: 0.85rem; }
.msg { padding: 0.7rem 0.9rem; border-radius: 8px; font-size: 0.85rem; margin-bottom: 1rem; display: none; }
.msg.show { display: block; }
.msg.error { background: #FBEBE9; color: #8B2A1F; }
.msg.success { background: #E8F0E5; color: #2D5A1F; }
.hint { font-size: 0.78rem; color: #7A6E62; margin-top: -0.5rem; margin-bottom: 1rem; }
