* {
    margin: 0px;
    padding: 0px;
}

header {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.header {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    height: 15vh;
    gap: 15rem;
}

.header img {
    width: 8rem;
}

.header img[alt="lgbtttiq"] {
    width: 22rem;
}

.title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

span {
    font-size: 0.8rem;
}

form i {
    font-size: 1.5rem;
}

button#aviso_privacidad {
    width: 100%;
}

.button-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.button-footer .btn {
    width: 10rem;
}

footer {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer > .copyright {
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

header, footer {
    background-image: url('../images/arcoiris_header.png');
    background-size: 100%;
    background-repeat: no-repeat;
}

/**
    Media Query para dispositivos móviles
*/
@media (max-width: 556px) {
    .header {
        gap: 2rem;
        height: 10vh;
    }

    .header img {
        width: 4rem;
    }

    .header img[alt="lgbtttiq"] {
        width: 12rem;
    }

    .main {
        margin-bottom: 4rem;
    }

    form {
        margin: auto;
        width: 90%;
    }

    footer {
        height: 14vh;
    }
}

@media (min-width: 996px) {
    form {
        height: 70vh;
    }

    .header img[alt="lgbtttiq"] {
        width: 22rem;
    }
}