body{ 


    margin: 0;
    padding: 0; 



    background-color: white;
    font-family: Arial, Helvetica, sans-serif;


}

.logo{
    width: 150px;
height: auto;
display: block;
}

header{
    width: 100%;
}


.navbar{
    background-color: #F8F9FA;
    padding: 15px 40px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.05);
}

.navbar-nav{
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}


.nav-link{ 
    text-decoration: none;
    color: #5a5a5a;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover{
    color: #4a86d9;
}


.material-symbols-outlined {
    font-size: 35px;
    color: #5a5a5a;
    transition: 0.3s;
}


.container-fluid{
    display: flex;
    justify-content: space-between;
    align-items: center;

}





.collapse{
    display: flex;
    justify-content: end;
    width: 100%;
}


/* CABEÇALHO P CIMA */


.topo{
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.botoesTopo{    
    margin-right: 60px;
    margin-top: 40px;
}

.botoesTopo button{

    background-color: #4a86d9;
    color: white;
    border: none;
    padding: 15px 35px;         
    border-radius: 30px;
    margin-left: 10;
    font-size: 18px;
    cursor: pointer;
    
}


.container{
    width: 600px;
    height: 650px;
    background-color: #e9e9e9;
    
    margin: 40px auto;

    border-radius: 25px;
    padding: 80px;

}

.titulo{
    color: #4a86d9;
    font-size: 65px;
    font-weight: bold;
    line-height: 80px;

}

.input-usuario{
    width: 500px;
    height: 60px;
    border: none;
    border-radius: 20px;
    margin-top: 40px;
    padding-left:  30px;
    font-size: 22px;


}

.botaoEntrar{
    background-color: #4a86d9;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 20px;
    margin-top: 70px;
    margin-left: 210px;
    cursor: pointer;

    margin: 40px auto;

    white-space: nowrap;

}
 
.botoes-login{
    display: flex;
    margin-top: 10px;
    gap: 2px;
} 

.footer{
    background-color: white;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}