/*===========================
    01. Logo Alphas Team CSS
===========================*/



/*===========================
    01. Logo Alphas Team CSS
===========================*/

html[data-bs-theme='dark'] #logoAlphasTeam {
    filter: invert(100%);
}

#logoAlphasTeam.login-logo,
#logoAlphasTeam img.login-logo {
    width: 80px;
}

/*===========================
    02. Background CSS
===========================*/

body {
    overflow: hidden;
}

#video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    opacity: 0.5;
}

/* Positionnement centré de la vidéo sur les petits écrans (téléphones) */
@media (max-width: 576px) {
    #video-background {
        top: 50%;
        left: 50%;
        transform: translate(-60%, -50%);
    }
}

/*Register*/

.bg-blur.register {
    background-size: cover;
    background-image: url('/public/assets/img/background/security-register.jpg');
    background-position: center;
}

.bg-blur.noactiveaccount {
    background-size: cover;
    background-image: url('/public/assets/img/background/security-noactiveaccount.jpg');
    background-position: center;
}