*{
    margin: 0;
    padding: 0;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgba(244, 165, 96, 0.668);
}
.container{
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    min-width: 45vh;
    width: 40vh;
    border: 2px solid black;
    box-shadow: 0px 0px 5px black;
}
form{
    margin: 2rem 0 1rem 0;

}
form select,input{
    width: 100%;
    border: none;
    outline:none ;
    border-radius: 0.75rem;
}
button{
    width: 100%;
    border: none;
    outline:none ;
    border-radius: 0.75rem;
    border: 2px solid black;
}
form input{
    border: 2px solid rgba(0, 0, 0, 0.714);
    font-size: 17px;
    height: 3rem;
    padding: left 0.5rem; ;
}
.dropdowm{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}
.dropdowm i{
    font-size: 1.5rem;
    margin: 1rem;
}
.select1 img{
    max-width: 2rem;
}
.select1{
    display: flex;
    width: 6rem;
    justify-content: center;
    align-items: center;
    border: 2px solid black;
    border-radius: 0.5rem;
}
.select1 section{
    font-size: 1rem;
    width: auto;
}
.msg{
    margin: 2rem 0 2rem 0;
    font-size: 20px;
}
form button{
    height: 3rem;
    background-color: #af4d98;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}