.bodyclass {
    background-image: url('../../../dist/img/sistema/image6.jpg');
    background-position: center center;
    /* El fonde no se repite */
    background-repeat: no-repeat;
    /* Fijamos la imagen a la ventana para que no supere el alto de la ventana */
    background-attachment: fixed;
    /* El fonde se re-escala automáticamente */
    background-size: cover;
    /* Color de fondo si la imagen no se encuentra o mientras se está cargando */
    background-color: #fff;
    /* Fuente para el texto */
    text-align: center;
    color: #000;
    height: 100vh;
}          
.bg-login-image {
    background: url("../../../dist/img/sistema/image10.png");
    background-position: center;
    background-size: cover;
}

@font-face {
    font-family: "arialbold"; 
    src: url('../../../dist/img/sistema/animatexto/fuentes/ArialMTStd-ExtraBoldCond.otf');  /*   */
}
p.shine	{
    padding-top: 0;
    padding-bottom: 1%;
    font-size: 250%;
    margin: 0 auto;
    width: 100%;
    font-family: 'arial';
    font-weight: bold;
    /*text-transform:uppercase;*/
    letter-spacing: 0.0em;
    text-align: center;
}

.shine {
    background: #40526b -webkit-gradient(linear, left top, right top, from(#0d0e36), to(#eeeff1), color-stop(0.5,#e7eaf5)) 0 0 no-repeat;
    -webkit-background-size: 125px;

    color: rgba(11, 15, 78, 0.383);
    -webkit-background-clip: text;

    -webkit-animation-name: shine;
    -webkit-animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
}


@-webkit-keyframes shine {
    0% {
        background-position: top left;
    }
    100%  {
        background-position: top right;
    }
}