main{
    align-items: center;
}

#credenciais{
    display: flex;
    flex-direction: column;
    width: 50%;
}

#credenciais> form{
    display: flex;
    flex-direction: column;
}

#credenciais> form> label{
    margin: 10px 0;
}

#credenciais> form> input{
    border-radius: 5px;
    padding: 5px;
    padding-left: 5px;
    font-size: medium;
}

#credenciais> form> div{
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

#credenciais> form> div> button{
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    margin: 0;
    color: black;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    width: 30%;
    font-size: large;
    cursor: pointer;
}

#credenciais> form> div> button:active{
    background-color: black;
    color: white;
    transition: 0.2s;
}

#credenciais> form> div> button> h4{
    margin: 0;
}

.item-log> span{
    font-weight: 500;
}

#erro{
    color: gray;
    margin: 0;
    text-align: center;
    font-weight: 700;
}

#logar:hover{
    filter: brightness(0.8);
    transition: 0.15s;

}

#cadastrar:hover{
    filter: brightness(0.8);
    transition: 0.15s;

}