.login-box {
    background-color: #ffffff;
    border-radius: 10px;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-image: url('../../img/login/img02_wall.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation: bg 30s linear infinite;
}

@keyframes bg {
    0% {
        background-image: url('../../img/login/img03_wall.jpg');
    }
    50% {
        background-image: url('../../img/login/img04_wall.jpg');
    }
    100% {
        background-image: url('../../img/login/img04_wall.jpg');
    }
}


/* filtro das pesquidas nas tabelas datatables */

.thead input {
    width: 100%;
}