*{
    margin: 0;
    padding: 0;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #d5bf86;
}

.container{
    background-color: #f1f0cc;
    padding: 2rem;
    border-radius: 1rem;
    min-height: 45vh;
    width: 40vh;
    border: 1px solid #a71d31;
}

form{
    margin: 2rem 0 1rem 0;

}

form select, button, input{
    width: 100%;
    border: none;
    outline: none;
    border-radius: 0.75rem;

}

form input{
    border: 1px solid #8d775f;
    font-size: 1rem;
    height: 3rem;
    padding: 0.5rem;
}

.dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.dropdown i{
    font-size: 1.5rem;
    margin-top: 1rem;
    background-color: #fcf6b1;
}
.select-container img{
    max-width: 2rem;
}

.select-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    border-radius: 0.5rem;
    border: 1px solid #8d775f;
}

.select-container select{
    font-size: 1rem;
    font-weight: 400;
    width: auto;
}

select{
    background-color: #f1f0cc;
}

.msg{
    margin: 2rem 0 2rem 0 ;
    font-weight:800;
    color: #3f0d12;
}

form button{
    height: 3rem;
    background-color: #a71d31;
    color: #fff;
    font-size: 1.15rem;
    cursor: pointer;
}

form button:hover{
    background-color: #7d1321;
}
