
.login-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: relative
}

@media (max-width: 767.98px) {
    .login-wrapper {
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        justify-content: unset;
        padding-top: 5rem
    }
}

.login-wrapper::after {
    content: "";
    background-image: url("../images/login-register.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.7;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute
}

.login {
    background-color: var(--bglight);
    padding: 2rem;
    margin: 3rem 5rem;
    border-radius: 1rem;
    z-index: 1;
    width: 35rem
}

    .login label {
        color: var(--colorx)
    }

    .login small {
        color: var(--colorx)
    }

    .login .form-check-label {
        margin-left: 1rem
    }

#loginUser {
    background-image: url(/assets/images/icon-user.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: 5px 8px;
    padding-left: 30px;
}

#loginPassword {
    background-image: url(/assets/images/icon-key.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: 5px 8px;
    padding-left: 30px;
}

#lostemail {
    background-image: url(/assets/images/icon-at.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: 5px 8px;
    padding-left: 30px;
}