*{
    margin: 0;
    padding: 0;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #023047;
}
.container{
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    min-height: 45vh;
    width: 40vh;
    box-shadow: 10px 10px 40px black;
}
form{
    margin: 2rem 0 1rem 0;
}
form select,input,button{
    width: 100%;
    border-radius: 0.75rem;
    border: none;
    outline: none;
}
form input{
    border: 1px solid lightgray;
    height: 3rem;
    padding-left: 0.5rem;
    font-size:1rem ;
}
.dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}
.select-container img{
    max-width: 2rem;
}
.select-container{
    display: flex;
    width: 6rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.5rem;
    border:1px solid lightgray;
}
.dropdown i{
    font-size: 1.5rem;
    margin-top: 1rem;
}
select{
    font-size:1rem ;
} 
.msg{
    margin: 2rem 0 2rem 0;
    text-align: center;
    font-size: 1.2rem;
}
button{
    height: 3rem;
    background-color: #035b87;
    color: white;
    cursor: pointer;
}
button:hover{
    background-color: #023047;
}