body {
}

    body::before {
        content: "";
        position: absolute;
        z-index: -2;
        box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.6); 
    }

    body::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
        z-index: -1;
    }

html, body {
    display: grid;
    height: 100%;
    place-items: center; /* mobile centered */
}

/* Tablet + Desktop */
@media (min-width: 768px) {
    html, body {
        place-items: end; /* align bottom */
        padding-right: 100px; /* spacing from right */
    }
}

.loginbg {
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.loginforms {
    background-color: white;
    border-radius: 10px;
    width:320px;
}

.btnLogin {
    display: block;
    width: 100%;
    background-color: #71BF46;
    border-radius: 20px;
    color: var(--fh-white);
    font-weight: 600;
}

.btnLogin:hover {
    display: block;
    width: 100%;
    background-color: #99d17a;
}

.btnShow {
    display: block;
    background-color: transparent;
    border: none;
    text-align: right;
    color: #71BF46;
    outline:none;
}

    .btnShow:hover {
        display: block;
        background-color: transparent;
        border: none;
        color: #99d17a;
        text-align: right;
        outline:none;
    }

    .btnShow:focus {
        display: block;
        background-color: transparent;
        border: none;
        color: #99d17a;
        text-align: right;
        outline:none;
    }

.bottomSite {
    color: #808080;

}
    .bottomSite:hover {
        color: #71BF46;
        
    }

.cbxChecked:checked{
    accent-color: red;
}

.emailMG {
    margin-top: 20px;
}

.passwordMG {
    margin-top: 0px;
}

.showMG {
    margin-top: 10px;
    margin-bottom : -5px;
}