body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden; /* Verhindert Überlauf des Blur-Effekts */
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(../img/HN6uXG7GzTE.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(3px);
  z-index: -1; /* Hinter das eigentliche Inhaltselement setzen */
}

#login-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

label {
  margin-bottom: 10px;
}

input {
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
}

button {
  padding: 10px;
  background-color: #af1010;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
