﻿.common-img-bg {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    --bg-current: url('../images/login/1.png');
    --bg-next: url('../images/login/2.png');
}

    .common-img-bg::before,
    .common-img-bg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 0;
        transition: opacity 1.5s ease-in-out;
        animation: zoomEffect 10s ease-in-out infinite alternate;
    }

    .common-img-bg::before {
        background-image: linear-gradient(to right, rgba(43, 44, 111, 0) 20%, rgba(43, 44, 111, 0.85) 100%), var(--bg-current);
        opacity: 1;
    }

    .common-img-bg::after {
        background-image: linear-gradient(to right, rgba(43, 44, 111, 0) 20%, rgba(43, 44, 111, 0.85) 100%), var(--bg-next);
        opacity: 0;
    }





    /* Crossfade */
    .common-img-bg.fade-bg::after {
        opacity: 1;
    }

/* Animação de zoom suave */
@keyframes zoomEffect {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

/* Conteúdo sempre acima do fundo */
.common-img-bg > * {
    position: relative;
    z-index: 10;
    max-width: 90%;
}

#AutenticacaoLogin, #Autenticacao2FA {
 
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-right: 250px;
}


.container {
    margin-right: 0px;
    padding-right: 0px;
}

.auth-box {
    background: rgba(255, 255, 255, 0.15); /* painel transparente */
    backdrop-filter: blur(10px); /* opcional, efeito vidro */
    color: white; /* deixa todo o texto branco */
}

.div-imagem  h2, .div-imagem  h3 {
    margin-top: 80px;
    color: white;
}
.md-float-material{
    opacity: 0.9;
}



