/* Basislayout */
body {
  background: url('../assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
}

/* Container für Login / Passwort-Formulare */
.login-container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
}

h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 26px;
  color: #333;
}

/* Formular-Elemente */
input, button {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

button {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #45a049;
}

/* Fehlermeldung */
.error {
  color: red;
  text-align: center;
  margin-bottom: 16px;
  font-size: 15px;
}

/* Link „Passwort vergessen“ */
.forgot-password {
  text-align: center;
  margin-top: 16px;
}

.forgot-password a {
  color: #007BFF;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password a:hover {
  text-decoration: underline;
}

/* Responsive für Smartphones */
@media (max-width: 480px) {
  .login-container {
    padding: 20px;
    border-radius: 12px;
    max-width: 90%;
  }
  h2 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  input, button {
    padding: 14px;
    font-size: 18px;
  }
  .forgot-password a {
    font-size: 15px;
  }
}
