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;
    background-color: white;
    border-radius: 39px;
    font-weight: bold; 
    height: 35px;
    width: 200px;
}

#wrong_pw{
    display: none;
    font-weight: 800;
    color: rgb(255, 18, 18);
}


@media (max-width: 600px) {
    #login {
        font-size: 14px; 
        color: black;
    }
}

@media (min-width: 1200px) {
    #login {
        font-size: 20px; 
    }
}


