.login-card{
    width: 300px;
    background-color: green;
    color: white;
    padding: 25px;
    border-radius: 3px;    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.login-card form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

#id_username, #id_password {
    background-color: white;
    color: gray;
    padding: 3px;
    padding-left: 5px;
    border-radius: 3px;
    width: 250px;
}

.login-card button {
    color: white;
    background-color: green;
    border: 1px solid white;
    padding: 5px;
    border-radius: 3px;
}

.errorlist {    
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    background-color: indianred;
    color: white;
    font-size: 14px;
}