body{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#logo{
    margin-left: 25%;
    width: 50%;
}
#loginBox {
    width: 30%;
}

.loginInput {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
}
#showPasswordDiv {
    margin-bottom: 10px;
    font-family: sans-serif
}

.button {
    width: 40%;
    padding: 12px;
    background-color: #0a171f;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
 
    margin-bottom: 10px;
}
#loginButton{
    margin-left: 10%;
}
#buttons{
    flex-direction: row;
    width: 100%;
};


#errorMessagesBox{
    width: 100%;
    background-color: red;
}
.errorMessages{
    text-align: center;
    color: crimson;
    font-family: sans-serif;
    
}
.successMessages{
    text-align: center;
    color: rgb(89, 155, 18);
    font-family: sans-serif;
    
}