/* Importando fonte do google */
@import url("https://fonts.googleapis.com/css2?family=Poppings:wght@400;600&display=swap");

/* css reset */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
}

/* retirando o text decoration */
body a {
    text-decoration: none;
}

/* estilizando o cabeçalho */
.div-header {
    background-color: rgb(70,130,180);
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

header h1 {
    color: white;
    font-size: 14pt;
    text-align: center;
}

header h2 {
    color: white;
    font-size: 13pt;
    text-align: center;
}


/* estilizando o corpo da página */
.main {
    display: flex;
}


/* =================== menu lateral==========================*/
.menu {
    background-color: rgb(70,130,180);
    width: 70px;
    min-height: 91vh;
}



.titulo-menu {
    overflow: hidden;
    display: none;
}

.ul-primario {
    padding: 10px;
}

.btn-logoff {
    display: block;
    bottom: 0;
}

.item-primario {
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    transition: all 0.5s ease-in-out;
    list-style: none;
    display: flex;
}

.item-primario:hover {
    background-color: #e0e0e058;
}


.active {
    background: #e0e0e058;
}

.menu:hover {
    width: 200px;
    transition: all 0.5s ease-in-out;
}

.menu:hover .titulo-menu {
    transition: all 0.5s ease-in-out;
    display: inline;
}


.item-primario a {
    color: white;
    font-size: 16px;
}

.icone-menu {
    font-size: 1.2rem;
    margin: 5px;
}

/* Menu DropDown */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(70,130,180);
    transition: all 0.5s ease-in-out;
    width: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 16px;
    z-index: 1;
    left: 150px;
    top: 0;
    list-style: none;
    color: white;
    border-radius: 8px;
  }

  .li-dropdown {
    padding: 15px;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

.li-dropdown:hover {
    background-color: #e0e0e058;
    transition: all 0.5s ease-in-out;
}

  .dropdown:hover .dropdown-content {
    display: block;
    transition: all 0.5s ease-in-out;
  }

/* estilizando o rodapé */

footer {
    background-color: rgb(70,130,180);
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

footer a {
    font-size: 10pt;
    text-align: center;
    color: white;
    text-decoration: none;
}

.barra-localizacao {
    width: 100%;
    padding: 10px;
    background-color: grey;
}

/* =================== Configurações da Tela de Login =============*/
#tela-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #c7c5c2;
}

.formLogin {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 7px;
    padding: 40px;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.4);
    gap: 5px;
}

.senha--diferente {
    display: none;
    margin-bottom: 15px;
    color: red;
    text-align: center;

}

.areaLogin img {
    width: 420px;
}

.formLogin h1 {
    padding: 0;
    margin: 0;
    font-weight: 600;
    font-size: 2.3em;
    text-align: center;
    color: rgb(70,130,180);
}

.formLogin h5 {
    padding: 0;
    margin: 0;
    font-weight: 500;
    font-size: 2.3em;
    text-align: center;
}

.formLogin p {
    display: inline-block;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

form a {
    text-align: center;
    text-decoration: none;
    color: rgb(70,130,180);
    font-weight: 600;
    margin-top: 10px;
}

.formLogin input {
    padding: 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    margin-top: 5px;
    border-radius: 4px;
    transition: all linear 160ms;
    outline: none;
}


.formLogin input:focus {
    border: 1px solid rgb(70,130,180);
}

.formLogin label {
    font-size: 14px;
    font-weight: 600;
}

.btn--1 {
    background-color: rgb(70,130,180);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none !important;
    transition: all linear 160ms;
    cursor: pointer;
    margin: 0 !important;

}

.btn:hover {
    transform: scale(1.05);
    /*background-color: #9c7736;*/

}

#novasenha {
    margin-top: 100px;
}

.link--login {
    color: rgb(70,130,180);
    font-size: 1em;

}


/* ===========configurações para computador ============*/
@media (min-width:1000px) {
    .menu {
        width: 200px;
    }


    .titulo-menu {
        display: inline;
    }
}