body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: rgb(255, 225, 203); /* Eine Hintergrundfarbe, die dem Hintergrund deines Bildes entspricht */
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Hier erstellen wir einen Container für das Hintergrundbild */
.background-image {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/BeasttlyBrainBurst.png');
    background-size: contain; /* Dies sorgt dafür, dass das Bild in seiner Originalgröße angezeigt wird */
    background-repeat: no-repeat;
    background-position: center; 
    z-index: 1; 
}

.background-image::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at center, transparent, rgba(255, 225, 203, 0.8) 80%, rgb(255, 225, 203) 100%);
    pointer-events: none;
}

label {
    display: block;
    margin-bottom: 10px;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
