#login-page {
    max-width: var(--content-max-width);
    margin: 5em auto;
    /*background-color: white;*/
    /*padding: 24px;*/
    /*border-radius: 12px;*/
    /*border: 1px solid #e6e6e6;*/
}


#submit-login {
    margin-top: 1.5em;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--button-radius);
    text-align: center;
    height: 40px;
    width: 100%;
    border: none;
    font-weight: 600;
    font-size: 14px;
    transition-duration: .3s;
    transition-property: color, background-color;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

#submit-login:hover {
    cursor: pointer;
    background-color: var(--dark);
}

h1 {
    font-weight: 600;
    margin-top: 0;
    color: var(--primary-text-color);
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 1.5em;
    }
}

.login-footer {
    margin-top: 3em;
}

.login {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1.5em;
    font-size: 13px;
    color: var(--primary-text-color);
    font-weight: 500;
}

.login a {
    margin-left: .6em;
    text-decoration: underline;
    color: inherit;
}

.toggle-password-button {
    position: absolute;
    width: 30px;
    top: 0;
    right: 0;
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    background-color: inherit;
    border: none;
}

.toggle-password-button:hover {
    cursor: pointer;
}