* {
    margin: 0;
    box-sizing: border-box;
    font-family: "Be Vietnam Pro", sans-serif;
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #4470a8;
    width: 100vw;
    height: 100vh;
}

#login-container{
    text-align: center;
    background-color: white;
    border: 1px solid gray;
    border-radius: 20px;
    width: 350px;
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#login-container img{
    width: 150px;
    height: 200px;
}

button{
    margin: 20px;
    background-color: midnightblue;
    color: white;
    border: none;
    padding: 10px 30px;
}

h1{
    padding: 20px;
}

.datos{
    width: 90%;
    margin: 0 5%;
    justify-content: center;
    text-align: center;
    align-items: center;
}



.usuario, .contraseña{
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    margin: 10px 0;
}

#mensaje{
    margin: 0 20px;
    padding: 10px;
    border-radius: 10px;
    text-align: start;
}

.label{
    width: 30%;
    text-align: start;
}

#id_username, #id_password{
    text-align: end;
    width: 70%;
    margin-left: 20px;
    height: 30px;
    border: 1px solid gray;
    border-radius: 8px;
}

.cerrar{
    margin: 20px;
    background-color: red;
    color: white;
    border: none;
    padding: 10px 30px;
}

