/* ===================== 🧱 GRUNDLAGEN ===================== */
body {
  margin: 0;
  padding: 0;
  background-color: #fdf6ee;
  font-family: sans-serif;
  color: #224f35;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

/* ===================== 🔙 ZURÜCK-BUTTON ===================== */
.back-button {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1rem;
  color: #224f35;
  text-decoration: none;
  font-weight: bold;
}
.back-button:hover {
  text-decoration: underline;
}
/* ===================== 📦 FORMULAR-CONTAINER ===================== */
.form-container {
  max-width: 400px;
  width: 90%;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}
/* ===================== 🖼️ LOGO ===================== */
.logo {
  width: 250px;
  margin-bottom: 1rem;
}
/* ===================== 📝 FORMULAR ===================== */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

input {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
/* ===================== 🔘 BUTTON ===================== */
button {
  background-color: #224f35;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}

button:hover {
  background-color: #1a3c27;
}
