*{
    margin: 0;
    padding: 0;
}

body{
    align-items:center;
    background-image: url(favicon.ico);
    background-color: #7C0B2B;
    box-sizing: border-box;
}

.wrapper{min-height:100vh;
padding-inline: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contaner{
    background-color:#b9272c;
    padding: 1rem;
    border-radius: 1rem;
    max-height: 600px;
    height: 100%;
    max-width: 400px;
    width: 100%;
    color: white;

}
.contaner:hover{
    box-shadow: 0 0 10px 15px #b35f60;
}

.contaner h2{

    text-align: center;
}


form{
    margin: 2rem 0 1rem 0;
}

form select, button, input{
    width: 95%;
    border:none;
    outline: none;
    border-radius: 0.75rem;
    background-color: transparent;
   
}

form input{
    border :1px solid lightgray;
    font-size: 1rem;
    height: 2rem;
    padding-left: 14px;
    color: white;
    
}


.dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}
.dropdown i{
    font-size: 1rem;
    margin-top: 1.5rem;
}

.select-contaner img{
    width: 2rem;
}
.select-contaner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7rem;
     border-radius: .5rem;
     border: 1px solid lightgrey;
    
}

.select-contaner select{
    font-size: 1rem;
    margin-left: .5rem;
    width: auto;
    color: white;
    background-color: #B9272C;
   
}
 


.msg{
    margin: 2rem 0 2rem 0 ; 
    font-weight: 600;
    font-size: 1.1rem; 
}

form button {
    height: 3rem;
    background-color: #cf1ba5;
    color: #fff;
    font-size: 1.2rem;
}
form button:hover{
    cursor:pointer;
    font-weight: 600;
}





@media (max-width: 350px) {

    .wrapper{
        padding-inline: 1rem;
    }
    .dropdown i{
        font-size: .5rem;
        margin-top: 1rem;
    }
    .contaner h2{
        font-size: 1rem;
    }

    .select-contaner{
       width: max-content;

    }
    .select-contaner img{
        width: 1.5rem;
    }

    .select-contaner select{
        font-size: .6rem;
        margin-left: .4rem;
       
       
       
    }






    .msg{
        margin: 1.5rem 0 1.5rem 0 ;  
        font-weight: 400;
        font-size: 1rem; 
    }

    form button {
        height: 2rem;
      
        font-size: 1rem;
    }
}