html, body{

    background-color: #fcfbfa;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    font-family: 'Lexend Deca', sans-serif;
    overflow-x: hidden;

}

.contenido{
    display: grid;
    min-height: 100dvh;
    grid-template-rows: auto 1fr auto;

}


h1{
    font-size: 40px;
    text-align: center;
    letter-spacing: 1.3px;
  
}

.formulario{

  width: 90vw;
  max-width: 1000px;       
  margin: 0 auto;          
  padding: 1rem;           
  box-sizing: border-box;  


}


.form{
    
    display: flex;
    flex-direction: column;
    background-color: #f3f2ec;
   padding: 20px;
    align-items: left;
    
    
}

.label{

    width: 140px;
    text-align: left;
    padding: 9px 0;
    font-weight: 400;
    color:#3e3d3d;
}


.input{
    padding: 10px;
    border-radius: 11px;
    border: solid 1px rgb(61, 59, 59);

}

label::placeholder{

    font-size: 10px;
    padding: 30px;
    
}

.terms{

    margin: auto;
    font-size: 12px;
    width: 90%;
    text-align: center;
    color: #5c5959;
}

.submit{

    padding: 13px 15px;
    font-weight: 600;
    font-size: 16px;
    background-color: rgb(61, 59, 59);
    background-color:#5f33e1;
    color: azure;
    letter-spacing: 1.2px;
    border-radius: 11px;
    border: solid 0.5px
}

.submit:hover{

   opacity: 0.8;
}

.question{

    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

footer{
    background-color: rgb(38, 38, 38);
    height: 100px;
    
 
}

.final__info {

    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
    padding: 10px;
    gap: 30px;
          
}



.final__info a,
.final__info p {

    color: #ede9e8;
    line-height: 2px;
    text-decoration:none ;
    font-size: 12px;
    font-weight: 100;
    
} 

.final__info a:hover {

    color: #aeaaa8;
        
} 






