.login-area {
    width: 200px;
    display: flex;
    flex-direction: column;
    background-color: lightsteelblue;
    align-items: center;
    padding: 1rem;
    height: 100px;
    border-radius: 3%;
    
}

.login-area button {
    margin-top: .5rem;
}

.login-area input {
    margin: .2rem;
    width: 150px;
}

main {
    margin-top: 20%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.error-loading-message {
    display: none;
    margin-top: 1rem;    
    height: 100px;
    width: 300px;
    background-color: rgb(219, 120, 120);
    color: white;
    text-align: center;
    border-radius: 3%;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

body {
    background-color: whitesmoke;
}