/* style.css – minimalistisches Design */
body {
  font-family: sans-serif;
  background: #E8E0D6;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.container {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 400px;
}
h1 {
  margin-top: 0;
  text-align: center;
}

input, button {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
button {
  background: #F6CA88;
  color: #000000;
  border: none;
  cursor: pointer;
  

}
button:hover { background: #b89766; }
.errors { color: #d9534f; list-style: none; padding: 0; }
@media (max-width: 600px) {
  .container { padding: 1rem; }
}

@font-face {
  font-family: 'The Seasons';
  src: url('fonts/The_Seasons_Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'The Seasons', serif;
}
