/* Gesamte Seite */
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #74ebd5, #ACB6E5);
  height: 100vh;
  margin: 0;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Login Box */
.loginBox {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  width: 300px;
  text-align: center;
}

/* Überschrift */
.loginBox h2 {
  margin-bottom: 20px;
}

/* Inputs */
.loginBox input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

/* Buttons */
.loginBox button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  background: #4CAF50;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

/* Hover Effekt */
.loginBox button:hover {
  background: #45a049;
}

/* Logout extra Farbe */
#logoutBtn {
  background: #f44336;
}

#logoutBtn:hover {
  background: #d32f2f;
}
.logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
}
