:root {
    --cor-letra-botao : #444;
    --cor-letra-botao-hover : #000;
    --cor-fundo-login : rgb(161, 161, 161);
    --cor-fundo2-login : white;
    --cor-navbar : #605ca8;
}

/* Animação background tela login -> ... */
.polygon {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: none;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: moveRandomly 10s infinite ease-in-out;
}

@keyframes moveRandomly {
    0% {
        transform: translate(var(--start-x), var(--start-y)) rotate(0deg);
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        background-color: var(--cor-navbar);
    }
    25% {
        transform: translate(var(--move-x1), var(--move-y1)) rotate(90deg);
        clip-path: polygon(25% 0%, 0% 100%, 100% 100%);
        background-color: var(--cor-fundo-login);
    }
    50% {
        transform: translate(var(--move-x2), var(--move-y2)) rotate(180deg);
        clip-path: polygon(0% 50%, 100% 50%, 50% 100%);
        background-color: var(--cor-navbar);
    }
    75% {
        transform: translate(var(--move-x3), var(--move-y3)) rotate(270deg);
        clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
        background-color: var(--cor-fundo-login);
    }
    100% {
        transform: translate(var(--move-x4), var(--move-y4)) rotate(360deg);
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        background-color:var(--cor-navbar);
    }
}

.polygon:nth-child(1) {
    --start-x: -300px;
    --start-y: -500px;
    --move-x1: 150px;
    --move-y1: 100px;
    --move-x2: 200px;
    --move-y2: 200px;
    --move-x3: 300px;
    --move-y3: 50px;
    --move-x4: 500px;
    --move-y4: 600px;
    animation-delay: 0s;
}

.polygon:nth-child(2) {
    --start-x: 0px;
    --start-y: 500px;
    --move-x1: 100px;
    --move-y1: 200px;
    --move-x2: 0px;
    --move-y2: 0px;
    --move-x3: 350px;
    --move-y3: 100px;
    --move-x4: 50px;
    --move-y4: 600px;
    animation-delay: 2s;
}

.polygon:nth-child(3) {
    --start-x: 500px;
    --start-y: 500px;
    --move-x1: 150px;
    --move-y1: 300px;
    --move-x2: -300px;
    --move-y2: -50px;
    --move-x3: 200px;
    --move-y3: 100px;
    --move-x4: 50px;
    --move-y4: 150px;
    animation-delay: 4s;
}

.polygon:nth-child(4) {
    --start-x: 100px;
    --start-y: 400px;
    --move-x1: 400px;
    --move-y1: 100px;
    --move-x2: 50px;
    --move-y2: 250px;
    --move-x3: 200px;
    --move-y3: 400px;
    --move-x4: 300px;
    --move-y4: 200px;
    animation-delay: 6s;
}

.polygon:nth-child(5) {
    --start-x: 600px;
    --start-y: 150px;
    --move-x1: 200px;
    --move-y1: 100px;
    --move-x2: 50px;
    --move-y2: 300px;
    --move-x3: 400px;
    --move-y3: 150px;
    --move-x4: 100px;
    --move-y4: 400px;
    animation-delay: 8s;
}
/* .... <- Animação background tela login */

/* Style Login */
.loginSistema {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
}

#adianti_div_content div .panel[form="form_login"]{
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
}

div[form=form_login] .panel-heading{
    background: var(--cor-letra-botao)!important;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#tbutton_btn_entrar {
    background-color: var(--cor-navbar) !important;
    border-width:0px;
    border-radius: 10px;
}
#tbutton_btn_entrar:hover {
    background-color: #504c8f !important;
}  

/* Style Layout */
#infoSessao {
    height: 34px;
    margin-left: auto;
    margin-right: 10px; 
}

#botaoSair {
    margin-right: 10px;
    width: 80px;
}

#USULOG {
    text-align: right;
    margin-left: auto;
    color: white;
    font-size: 20px;
    margin-bottom: -6px;
    margin-top: -7px;
}

#UNILOG {
    text-align: right;
    margin-left: auto;
    color: white;
    margin-bottom: 0;
}

#adianti_div_content > div {
	padding-top: 0px;
}

@media (max-width: 767px) {
    #botaoSair > span {
    display: none;
  }
  #botaoSair{
    width: 40px;
  }
}