html {
    background-color: rgb(230,230,250);
    font-family: Arial, sans-serif;
}

b {
    font-weight: bold;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(250, 250, 230);
    border-radius: 10px;
    margin: 25px;
    text-align: center;
}

.login-form input {
    margin: 0px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgb(200, 200, 200);
}

.login-form button {
    padding: 10px 20px;
}

#nav-header {
    height: 24px;
}
