*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial,helvetica,Sans-Serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  
  background: linear-gradient(135deg, #0f172a, #8a2be2);
  
}

.container {
  width: 350px;
  
  padding: 30px;
  
  border-radius: 60px;
  
  background: rgba(255,255,255,0.08);
  
  backdrop-filter: blur(10px);
  
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  
  text-align: center;
}

.h1 {
  color: white;
  
  margin-bottom: 25px;
}
   
   .inputs {
     display: flex;
     
     flex-direction: column;
     
     gap: 12px;
     
     border-radius: 40px;
     
   }
   .input{
    padding: 12px;
    
    border: none;
    
    border-radius: 10px;
    
    outline: none;
    
    background: rgba(255,255,255,0.12);
     
    color: white;
     
    font-size: 15px;
     
   }
   
   .input::placeholder {
     color: #d1d5db;
     
   }
   
  /* remove settinhas do input number */
  
  /* chrome, edge e safari */
  inpult::-webkit-outer-spin-button,
  inpult::-webkit-outer-spin-button,{
     -webkit-appearance: none;
     
     margin: 0;
  }
     
     /* firefox */
     input[type=number]{
       -moz-appearance: textfield;
     }
     
    button {
       width: 100%;
       
       margin-top: 20px;
       
       padding: 12px;
       
       border: none;
       
       border-radius: 10px;
       
       background: #8b3a62;
       
       color: white;
       
       font-size: 16px;
       
       cursor: pointer;
       
       transition: 0.3s;
     }
     
     .button:houver {
       background: #cd6090;
     }
     
     h2 {
       margin-top: 20px;
       
       color: #000000;
     }
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
     
   
   
   