body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: f3f3e7;

}
.header{
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
}

.header .img-hero{
        width: 100%;
        border-radius: 0px 0px 20px 20px;
        display: none;
}

.header .img-desktop{
    width: 300px;
    margin: 20px auto;
}

.main .section{
    padding: 0px 20px;
    box-sizing: border-box;
    
}
.main .section .section__title{
    font-size: 1.5em;
    font-weight: 700;
    color: #003834;
    margin-bottom: 20px;
    text-align: center;
    text-wrap: balance;
    
}

.section-form{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-form .form{
    width: 100%;
    max-width: 400px;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.form .form__group{
    margin-bottom: 20px;
}

.form .form__group label{
    font-size: 1.2em;
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}

.form .form__group input{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.form .form__group button{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    background-color: #003834;
    color: #fff;
    cursor: pointer;
}

.social__group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 181px;
    margin: 0 10px;
}

.btn-facebook {
    width: 100%;
    padding: 10px 5px;
    background-color: #3b5998;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.btn-facebook:hover {
    background-color: #2d4373;
}

.container-social{
    display: flex;
    justify-content: center;
    align-items: center;

}
body > main > section.section-form.section > div > h2:nth-child(3){
    margin: 20px ;
}
.footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    font-size: 0.9em;
    color: #555;

}

.footer__text {
    color: #666;
    font-style: italic;
}

.footer__text a {
    color: #003834; /* Color del enlace */
    text-decoration: none;
}

.footer__text a:hover {
    text-decoration: underline;
}

@media (max-width:700px) {
    body > main > section.section-form.section > div > h2:nth-child(3){
        margin: 20px 0 0 0;
    }
    .container-social{
    flex-direction: column;
    align-items: center;
    }
    .social__group{
        margin: auto;
    }

    .header .img-desktop{
        display: none;
    }
    .header .img-hero{
        display: block;
    }
}