* {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
}

body.login {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

body.login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    /* Aumenta a largura */
    height: 110%;
    /* Aumenta a altura */
    background: url('../../assets/img/bg.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
    animation: moverVertical 60s ease-in-out infinite alternate;
}

/* Animação para movimento vertical */
@keyframes moverVertical {
    0% {
        transform: translateY(-50px) scale(1.15);
        /* Leve deslocamento para cima e ampliação */
    }

    50% {
        transform: translateY(50px) scale(1.15);
        /* Leve deslocamento para baixo */
    }

    100% {
        transform: translateY(-50px) scale(1.15);
        /* Volta ao início */
    }
}



.login .box {
    width: 300px;
    background: #e9f0f4d7;
    padding: 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    /* Adiciona uma sombra leve para destaque */
    border-radius: 8px;
    /* Cantos arredondados para um visual mais suave */
}

.login .fas.fa-check {
    display: none;
}

.login .box .logo {
    margin-bottom: 20px;
}

.login .box img.logo {
    width: 100%;
}

.login .button {
    text-align: center;
}