*{
    margin: 0;
padding: 0;
  font-family: "Poppins", sans-serif; 
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: rgb(185, 179, 169);
     background: linear-gradient(135deg, #89f7fe, #66a6ff)
}
.container{
   background: rgba(255, 255, 255, 0.15);
    padding: 3rem;
    border-radius: 2rem;
    width: 500px;
    height:500px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(12px);
          border: 5px solid rgba(255, 255, 255, 0.2);
}
form select,button,input{
    border: none;
    border-radius: 0.6rem;
    width: 100%;
} 
form input {
    border:1px solid lightgray;
    font-size: 1rem;
    height: 2.5rem;
    padding-left: 0.5rem;
}
button{
    height: 3.5rem;
    padding: 0.4rem;
    margin-top: 10px;
    background-color: rgb(235, 69, 69);
      background: linear-gradient(135deg, #ff5858, #f857a6);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    
}
.dropdown{
 display: flex;   
 justify-content: space-between;
 align-items: center;
 font-size: 2rem;
}
select{
    height: 29px;
}
.msg{
    margin: 2rem 0 2rem 0;
    font-size: 2rem;
}
p{
    font-size: 2rem;
}
h1{
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    font-size: 3rem;
}