html,
body{
   font-family: 'Poppins', sans-serif;
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
  
  body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(https://c1.wallpaperflare.com/preview/898/284/844/stock-trading-monitor-desk.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    
  }
  
  .container{
    background-color:rgba(222, 184, 135, 0.036);
    padding: 50px 24px;
    border-radius: 20px;
    width: 490px;
    backdrop-filter: blur(10px);
    box-shadow: 5px 5px 50px 5px rgba(5, 5, 36, 0.219);
   
  }
  
  h1{
    color:#ffffff;
    text-align: center;
    margin-bottom: 0.5em;
    font-family: sans-serif;
  }
  .container .box{
    width: 100%;
    display: flex;
  }
  .box div{
    width: 100%;
  }
  
  select{
    width: 95%;
    height: 40px;
    font-size: 1.2em;
    cursor: pointer;
    background-color:rgba(161, 161, 161, 0.736);
    outline: none;
    color: black;
    margin: 0.2em 0;
    padding: 0 1em;
    border-radius: 10px;
    border: none;
  }
  
  
  input{
    width: 80%;
    height: 40px;
    font-size: 1em;
    margin: 0.2em 0;
    border-radius: 10px;
    border: none;
    background: #cccccc;
    outline: none;
    padding: 0 1em;
  }
  
  .btn{
    display:flex;
    justify-content: center;
  }
  button{
    width: 50%;
    height: 40px;
    background-color:#ea0404ac;
    color: #ffffff;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    margin: 0.5em 0;
  
  }