*{
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

header{
    width: 100vw;
    height: 50px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}


.user{
    width: 200px;
    height: 35px;
    display: flex;
    justify-content: space-around;
}

.exit{
    width: 33px;
    height: 38px;
    display: flex;
    border-radius: 7px;
    align-items: center;
    justify-content: center;
    background-color: #edebeb;
}

.userLoged{
    width: 130px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 20px;
    background-color: #edebeb;
}

.userLoged img{
    width: 23px;
    border-radius: 50%;
}

main{
    width: 100vw;
    height: 94vh;
    background-color: #f0f0f0;
    padding: 30px 35px;
    
}

section{
    width: 250px;
    height: 30px;
    display: flex;
    gap: 4px;
    align-items: center;

    margin-bottom: 50px;

    color: #303030;
}

form{
    width: 300px;
    height: 180px;
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.input-group{
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: column;
}

.input-group input{
    width: 100%;
    height: 28px;
    border-radius: 3px;
    padding-left: 10px;
}

.input-group select{
    width: 100%;
    height: 25px;
    border-radius: 3px;
    padding-left: 10px;
}

label{
    font-size: 13px;
    font-weight: bold;
    font-family: 'Montserrat';
}

button{
    width: 100%;
    height: 60px;
    border-radius: 6px;
    background-color: #65DB96;
}

