*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background-color: wheat;
    padding: 20px;
    height: 100vh;
    background: url("./img/90792500-1b7a-417d-9378-74729910e486.webp");
    background-position: center;
    background-repeat: no-repeat;
}
.container{
    backdrop-filter: blur(50px);
    padding: 20px;
    border-radius: 0.8rem;
    min-width: 350px;
    box-shadow: 0 0 10px rgb(48, 48, 48);
}
.container p{
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.container h2{
    margin-bottom: 20px;
}
.form{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
form input{
    padding: 9px;
    font-size: 15px;
}
form select, input, button{
    width: 100%;   
    border-radius: 0.4rem; 
    border: none;
    outline: none;
}
.dropdown{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}
.dropdown i{
    font-size: 15px;
    border: 1px solid black;
    margin-top: 10px;
    border-radius: 50%;
    padding: 10px;
    font-weight: bolder;
}
.select-container{
    background-color: white;
    border-radius: 0.4rem;
    display: flex;
    cursor: pointer;
}
.select-container img{
    max-width: 50px;
    max-height: 40px;
}
.select-container select{
    cursor: pointer;
}
.msg{
    font-size: 15px;
    margin: 1.5rem 0;
    text-align: center;
}
button{
    padding: 15px;
    border-radius: 0.5rem;
    background-color: black;
    color: aliceblue;
    cursor: pointer;
}
