body {
    background-color:  rgb(132, 145, 213);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.centered-content {
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column; 
    align-items: center;
}

img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

#loginh1 {
    color: white;
}

input{
    width: 200px;
    height: 35px;
}

#login {
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2vw; /* Dynamische Schriftgröße basierend auf der Breite des Viewports */
    background-color: white;
    border-radius: 39px;
    font-weight: bold;
    height: 35px;
    width: 200px;
}

/* Optional: Mindest- und Höchstschriftgrößen festlegen */
@media (max-width: 600px) {
    #login {
        font-size: 16px; /* Mindestgröße für kleinere Bildschirme */
    }
}

@media (min-width: 1200px) {
    #login {
        font-size: 20px; /* Höchstgröße für größere Bildschirme */
    }
}


