body {
  font-family: Arial, sans-serif;
  background-color: #f3f4f6;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.login-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 360px;   /* ← breiter */
  text-align: center;
}

.logo {
  width: 150px;
  margin-bottom: 15px;
}

h1 {
  margin-bottom: 1.5rem;
}

input[type="text"],
input[type="password"] {
  width: 92%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

button {
  width: 80%;
  padding: 0.7rem;
  background-color: #9BCE2B;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #779E21;
}

.error {
  color: red;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.login-wrapper {
  width: fit-content;
  margin: 0 auto;
}

.login-alert {
  margin-bottom: 15px;
}

