* {
    margin: 0px;
    padding: 0px;
    /* font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal; */
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    /* background-image: url('../img/background.png'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

main {
    background-image: url('../img/background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    height: 100dvh;
    /* margin-top: -90px; */


}



section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;

}




.area_logo {
    /* background: red; */
    display: flex;
    justify-content: center;
    padding-top: 10px;
    z-index: 1;
}

.area_logo img {
    width: 130px;
}



.area_post {
    background-color: #141313ab;
    height: 340px;
    margin: 0px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;   
    margin-top: 30px;
    padding-bottom: 20px;
    gap: 10px;
    
    

}



.area_frase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    margin-bottom: 10px;

}

.area_frase span {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    padding: 0px 10px;
}

.area_frase img {
    width: 24px;
    height: 24px;

}

/* .area_post p {
    color: #e21515;
    padding: 10px;
    font-size: 16px;
    text-align: justify;

} */
#form{
    display: flex;
    gap: 20px;
}

/* //TODO::STYLE DO FORMULARIO */
#form label {
    color: #FFFFFF;
    font-weight: 600;
}

#form input {
    height: 45px;
    /* background: #747280; */
    border: 1px solid #7F7B84;
    border-left:none;
    
}
#form input:focus {
    border-color: #44B510;
    /* Ou defina a cor da borda */
    outline: none;
    /* Remove o contorno padrão */
    /* box-shadow: none; */
    /* Remove a sombra de foco do Bootstrap */
    box-shadow: 0px 0px 5px 0px#44B510;;
   
}

#form span{
    background: #747280;
    border-right: none;
}








.btn-login {
    margin: 0px 10px;
    border: none;
    height: 51px;
    background-color: #44B510;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 20px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btn-login:hover {
    background-color: rgb(92, 139, 44);
}

.btn-login img {
    width: 42px;
    padding-right: 10px;
}






