*{
    margin: 0;
    box-sizing: border-box;
    transition: 0.4s;
}

.main{
    height: 100vh;
    background-color: rgb(120, 124, 138);
    color: white;
    display: flex;
    font-family: sans-serif;
    align-items: center;
    justify-content: center;
    
}

.formulario{
    background-color: rgb(101, 112, 143);
    height: 70vh;
    width: 60%;
    border-radius: 2%;   
    text-align: center;
}

.formulario form{
    padding-top: 10%;  
    display: grid;
    grid-template-columns: 2fr 3fr; 
    gap: 1.5rem;
    width: 90%;
    
}

.formulario button {
    text-align: center;
    padding: 0.75rem;
    font-family: sans-serif;
    font-size: 1rem;
    background-color: #8f9cbe;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;  
  }
  
  .formulario button:hover {
    background-color: #575768;
  }

  