
.contenedor{
    display: flex;
    flex-direction: column;
    gap: 5px;
   
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 400px;
   


    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    color: #333333;
    transition: all 0.3s ease;

 
}

.contenedor>form>button[type='submit']{

    flex-direction: row;
    gap: 10px;
  

}
.header-form{
    display: flex;
    justify-content: center;
    height: 100px;
}

.contenedor >form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.label-form{
    gap: 1rem;
    display: block;
    justify-content: space-between;
    font-size: var(--font-small);
    align-items: center;
}


.footer-form{
    gap: 10px;
}

.footer-form > a{
    font-size: var(--font-small);
    text-decoration: none;
    color: var(--text-light);
    cursor: pointer;
}




.footer{
    /* position: fixed; */
    bottom: 0;
    gap: 10px;
    padding: 10px;
}


.footer-redes-sociales{
    gap: 20px;
}

.footer a{
    text-decoration: none;
    color: var(--text );
}

.help-button{
    position: absolute;
    bottom: 5px;
    right: 5px;
}




