*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(178, 106, 106);
}
.page{
    background-color: white;
    padding: 2rem;
    width: 47vh;
    min-height:45vh;
    border: 2px solid red;
    border-radius: 10px;
}
form{
    margin-top: 1.5rem;
}
form select,button,input{
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.5rem;
}
form input{
    border: 1px solid lightgrey;
    font-size: 1rem;
    height: 2rem;
    padding-left: 0.5rem;
}
.dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.6rem;
}
.dropdown i{
    margin-top: 1rem;
    font-size: 1rem;

}
.selectcontainer img{
    width: 2rem;
    display: flex;
}
.selectcontainer select{
    font-size: 0.9rem;
}

.selectcontainer{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid lightgray;
    border-radius: 10px;
}

.mes{
    margin: 1.5rem 0 1.5rem 0;
}

button{
    height: 2.5rem;
    background-color: purple;
    color: white;
    cursor: pointer;
}
