*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #09119f;
}

.container{
    background-color: aliceblue;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 10 10 50px rgb(76, 76, 161);
    
}

.container h1{
    text-align: center;
}
form{
    margin: 2rem 0 2rem 0;
}
form input{
    height: 38px;
    width: 100%;
    margin: 5px 0px;
    padding: 0px 8px;
    font-size: 1rem;
    border: 2px outset gray;
}


.dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown i{
    font-size: 1.5rem;
    margin-top: 1rem;
}

#submit{
    background-color: rgb(0, 110, 255);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s;
    height: 35px;
    width: 100%;
    margin: 5px 0px;
    padding: 0px 20px;
    border: none;
    border-radius: 0.4rem;
    box-shadow: 0 0 4px blue;
    cursor: pointer;
}

#submit:hover{
    background-color: #161ebd;
}
#submit:active{
    box-shadow: none;
}

.select-container img{
    max-width: 1.75rem;
}
.select-container select{
    border: none;
    background-color: aliceblue;
    margin: 3px;
    outline: none;
}

.select-container{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid gray;
    border-radius: 0.2rem;
    padding: 0.3rem 0.2rem;
    margin: 0.2rem 0;
}

.msg{
    margin: 1.2rem 0;
}