/* parpadeador---------------------------------------------- */
.parpadeador {
    animation: fondoytextonparpadeador 2s infinite;
}

@keyframes fondoytextonparpadeador {
    0% {
        background-color: #ffffff33
    }

    10% {
        background-color: #ff386033
    }

    100% {
        background-color: #ffffff33
    }
}

/* pestañea ------------------------------------------------ */
.pestañea {
    animation-name: fondoytextopestañeador;
    animation-duration: 0.3s;
    animation-iteration-count: 1;
}

@keyframes fondoytextopestañeador {
    0% {
        background-color: transparent
    }

    50% {
        background-color: #209cee23
    }

    100% {
        background-color: transparent
    }
}
#login{
    background-image: url("/contenido/images/torre-1024x1024.jpg");
    background-position: center; /* Center the image */
    background-size: 100vw;
    height: 100vh; /* For 100% screen height */
    width:  100vw; /* For 100% screen width */
    outline: 1px red solid;
}
/* ----------------------------------------------------------- */

/* @media screen and (max-width: 700px) {
    table {
        width: 100%;
    }

    thead {
        display: none;
    }

    tr:nth-of-type(2n) {
        background-color: inherit;
    }

    tr td:first-child {
        background: #f0f0f0;
        font-weight: bold;
        font-size: 1.3em;
    }

    tbody td {
        display: block;
        text-align: center;
    }

    tbody td:before {
        content: attr(data-th);
        display: block;
        text-align: center;
    }
} */