:root {
    /* --page-login-form-bg: #ffffffd9; */
    --font-size-base: 0.95rem;
}

body.page-login {
    display: flex;
    position: static;
    flex-direction: column;
    block-size: auto;
    min-block-size: 100%;
    align-items: normal;
    justify-content: normal;
    overflow: auto;
}

body .page-entry {
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('../images/login-bg.jpg');
    min-block-size: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

body .page-entry::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #3e4654e0;
}

body .page-entry .form-check {
    padding-left: 0;
}

body.page-login #flash-messages {
    position: sticky;
    top: 0;
    z-index: 1;
}

.login-wrapper {
    --inline-size: 100%;
    inline-size: var(--inline-size);
    max-inline-size: var(--inline-size);
}

.login-wrapper .alert {
    margin-bottom: 1rem;
    border-radius: var(--bs-border-radius);
}

.login-wrapper .form-group {
    padding: 0px 0 14px;
}

.toggle-password-button {
    color: var(--bs-body-color);
    font-family: 'Oxanium';
    font-weight: 600;
}

@media (min-width: 992px) {
    .login-wrapper {
        margin-block-start: initial;
    }
}