/* barra superior */
.navbar-top {
    background-color: #b30000; /* Cor vinho da barra superior */
    height: 20px;
    display: flex;
    align-items: center;
}

.navbar-custom {
    background-color: rgb(255, 255, 255); /* Fundo branco para a barra principal */
    border-bottom: 2px solid #b30000; /* Linha inferior vinho  */
}

.navbar-brand {
display: flex;
align-items: center;
}

.navbar-brand img {
max-height: 60px;
margin-right: 10px;
}

.nav-link {
    color: #b30000 !important; /* Cor vinho para o texto */
    font-weight: bold;
    padding:  15px;
    font-size: 16px;
    font-family: "Nunito", sans-serif;
    text-decoration: none;
}

.nav-link:hover {
color: #ddbfbf !important; /* Cor marrom claro para o texto ao passar o mouse */
}

.navbar-nav {
gap: 15px; /* Espaçamento entre os itens */
}

.sair {
display: flex;
align-items: center;
gap: 8px;
font-weight: bold;
}

.sair a {
color:  rgb(255, 255, 255) !important;
text-decoration: none;
font-size: 14px;
font-family: "Nunito", sans-serif;
}

.sair i {
font-size: 13px;
}

.perfil {
display: flex;
align-items: center;
gap: 8px;
font-weight: bold;
}

.perfil a {
color:  rgb(255, 255, 255) !important;
text-decoration: none;
font-size: 14px;
font-family: "Nunito", sans-serif;
}

.perfil i {
font-size: 13px;

}

.logo-img {
max-width: 100%;
height: auto;
}

.navbar-toggler-icon {
background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%2865, 65, 65, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.wrapper{
    width:200px;
    height:60px;
    position: fixed;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
}
.circle{
    width:20px;
    height:20px;
    position: absolute;
    border-radius: 50%;
    background-color: #e20911;
    left:15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.circle:nth-child(2){
    left:45%;
    animation-delay: .2s;
}
.circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.circle:nth-child(4) {
    left: 100%; /* Posição do novo círculo */
    animation-delay: .4s; /* Ajuste o atraso da animação conforme necessário */
}
.shadow{
    width:20px;
    height:4px;
    border-radius: 50%;
    background-color: rgba(161, 27, 27, 0.623);
    position: absolute;
    top:62px;
    transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow{
    0%{
        transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
        opacity: .4;
    }
}
.shadow:nth-child(4){
    left: 45%;
    animation-delay: .2s
}
.shadow:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
}
.shadow:nth-child(6) {
    left: 45%; /* Posição da sombra do terceiro círculo */
    animation-delay: .2s; /* Ajuste o atraso da animação conforme necessário */
}
.shadow:nth-child(8) {
    left: 100%; /* Posição da sombra do quarto círculo */
    animation-delay: .4s; /* Ajuste o atraso da animação conforme necessário */
}

.wrapper span{
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 12px;
    color: #e20911;
}

.loading-screen {
    display: block;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 1, 1, 0.889); /* Cor escura com       transparência */
    z-index: 9999; /* Garante que o fundo escuro esteja acima de outros     elementos */
    display: block; /* Inicialmente oculto */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
}

body {
    min-height: 100vh;
    background-image: url("/static/img/background.png");
}

.footer {
    width: 100%;
    height: 12%;
    background-color: black;
    bottom: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}
.footer p {
    font-size: 0.8vw;
    margin: 0%;
}
.footer a {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*estilização da logo */
.logoServidor {
    width: 10vw;
}


@media (max-width: 450px) {
    .box-login {
        width: 65vw;
        height: 45vh;
    }
    h1 {
        font-size: 8vw;
    }
    .caixaTexto {
        width: 50vw;
        font-size: 4.5vw;
        margin-bottom: 5vh;
    }
    .botao {
        width: 25vw;
        font-size: 5vw;
        border-radius: 3vw;
    }
    .esqueciSenha {
        font-size: 3vw;
    }
    #senha {
        margin-bottom: 6vh;
    }
    .box-img {
        width: 40%;
        position: fixed;
        bottom: 1vh;
    }
}