body {
  font-family: sans-serif;
  background-size: cover;
  /* Bild füllt das Fenster proportional aus */
  background-position: 20% 100%;
  /* Bild bleibt zentriert */
  background-repeat: no-repeat;
  /* kein Kacheleffekt */
  background-attachment: fixed;
  /* bleibt beim Scrollen stehen (optional) */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background: #f0e1d5;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 225px;

}


h1 {
  /*font-family: 'Great Vibes', cursive;*/
  font-size: 3.5em;
  text-align: center;
  color: #4e2d28;
  margin-bottom: 20px;
  margin-top: 20px;
  /*font-family: "Prata", serif;*/
  font-family: "Apparel", serif;
  font-size: 4em;
  border-radius: 10px;

}

input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #997150;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}

input:focus {
  border-color: #997150;
  outline: none;
}

button {
  width: 100%;
  padding: 0.8rem;
  background-color: #c17468;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #4400ff;
}

footer {
  position: fixed;
  text-align: center;
  height: 50px;
  background-color: #f4eee8;
  color: #777;
  font-size: 0.9em;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;               /* aktiviert Flexbox */
  align-items: center;         /* vertikal zentrieren */
  justify-content: center;     /* horizontal zentrieren */
}