html {
    font-size: 62.5%;
    /* Now 10px = 1rem! */
    font-family: 'Roboto', sans-serif;
}

*{
    margin: 0;
    padding: 0;
}

body{ /* V4 */
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.body-wrapper{
    background-image: url('./../img/background.svg');
    //background: url('./../img/junio/papas2.gif');
    background-repeat: no-repeat;
    /* background-position: center; */
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100% !important; /* V2 */
}

.logo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.logo img{
    height: 35rem;
}

.logo svg{
    height: fit-content;
    width: 20rem;
}

svg path{
    fill: var(--main-color);
    /*fill: #b64966;
    fill: white;
    fill: #C20A0A; 
    fill: #ffbd59;*/
}

form{
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 0.3rem;
    box-shadow: 0 0 0.4rem #595959;
    box-sizing: border-box;
    width: 35rem;
}

form h1{
    font-size: calc(var(--title-size) + 0.5rem);
    margin: 0;
}

form p,
form input,
form button{
    font-size: var(--paragraph-size);
}

.cei-button{
    border: none;
    font-size: var(--paragraph-size);
}

.inputs-wrapper{
    margin: 2rem 0;
}

/* form input{
} */

.required{
    font-size: var(--small-paragraph-size);
    margin: 0;
    margin-bottom: 2rem;
    padding-left: 0.5rem;
    color: #6b000e;
}

footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--main-color);
    padding: 1rem;
    box-sizing: border-box;
}

footer p,
footer a{
    font-size: var(--small-paragraph-size);
    color: white;
    margin: 0;
    text-align: center;
}

footer span:first-child,
footer button img{
    height: 6rem;
    width: 10rem;
}

footer button{
    border: none;
    background-color: transparent;
}

article{
    display: none;
}

a:hover{
    color: #ebebeb;
}

.logo-iseu{
    height: 4rem;
    width: 4rem;
    background-image: url('./../img/iseu-blanco.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 1024px) {
    .body-wrapper{
        flex-direction: column;
        justify-content: center;
        padding: 1rem;
        height: auto;
    }

    .logo svg{
        height: 10rem;
        width: 10rem;
    }

    .logo img{
        height: 20rem;
    }

    footer{
        flex-direction: column;
        height: initial;
        align-items: center;
        position: relative;
    }

    footer span:first-child{
        height: 0rem;
    }

    footer button{
        margin-top: 0.5rem;
    }
}

@media (prefers-color-scheme: dark){
    body{
        background-color: #3c3c3c;
    }

    form{
        background-color: #6a6a6a;
    }

    *{
        color: #fff;
    }

    .required{
        color: #ffd5d5 !important;
    }
}