body,
html {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url("/static/img/background.png");
    background-size: 100%;
    font-family: "Nunito", sans-serif;
    background-size: 100%;
}
h1 {
  /*Estilização do título */
    font-size: 3.5vw;
    font-weight: 800;
}
.titleLogin {
    font-size: 3vw;
    font-weight: 800;
    margin-bottom: 10vh;
    color: black;
}
.box-login {
    /*Estilização da div com todos os componentes de login*/
    background-image: linear-gradient(to top, #75797b, #c8ccd0);
    width: 25vw;
    height: 65vh;
    border-radius: 2vw;
    margin-bottom: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px #b22426;
}
.box-login h1 {
    margin-bottom: 3vh;
}
.caixaTexto {
    /* estilização dos inputs*/
    width: 20vw;
    height: 3vh;
    margin-bottom: 7vh;
    border: none; /* Remove as bordas */
    border-bottom: 2px solid black; /* Adiciona uma borda inferior */
    outline: none; /* Remove o contorno ao focar */
    background-color: transparent;
    font-size: 1.5vw;
    transition-duration: 0.5s;
}
.caixaTexto:focus {
    border-color: #b22426;
    background-color: transparent;
}
.caixaTexto.preenchido {
    background-color: transparent;
}

.caixaTexto:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important; /* Adicionando uma sombra transparente */
  transition: background-color 0s 9999s; /* Adicionando um tempo de transição grande */
}
#senha {
    margin-bottom: 6vh;
}
.botao {
    /*estilização do botão*/
    width: 10vw;
    height: 6vh;
    margin-bottom: 1.5vh;
    border-radius: 0.5vw;
    font-size: 2vw;
    font-weight: 800;
    color: white;
    background-color: #b22426;
    border-style: none;
    cursor: pointer;
    font-family: "Nunito", sans-serif;
    transition-duration: 0.8s; /* Duração da transição */
}
.botao:hover {
  transform: scale(1.1); /* Aumenta o tamanho do botão em 10% */
}
/*estilização do esqueci minha senha*/
.esqueciSenha {
    font-size: 1.3vw;
    color: black;
    transition-duration: 0.5s;
}
.esqueciSenha:hover {
    color: #b22426;
}
.global {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.error_message {
    color: red;
    margin-top: 3vh;
    font-size: 1.2vw;
}
.sucess_message {
    color: rgb(0, 0, 0);
    margin-top: 3vh;
    font-size: 1.2vw;
}
#message{
    color: rgb(0, 0, 0);
    margin-top: 3vh;
    font-size: 1.2vw;
}
.hidden {
    display: none;
}
.logoServidor{

width: 20vh;
}


@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;
    }
}
