
.auth {
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.auth .center,
.auth {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.auth .center {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    width: 200px;
    height: 200px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}
.logo-waiting {
    margin-top: 60px;
    width: 100px;
    height: 80px;
    background-image: url(../images/bluelogo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.text {
    margin-top: 24px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: #1961ac;
    font-size: 26px;
    height: 1.6em;
    line-height: 1.6;
    white-space: nowrap;
}
.in {
    width: 55%;
    height: 55%;
    -webkit-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite;
}
.middle {
    width: 80%;
    height: 80%;
    -webkit-animation: rotateNeg 2s linear infinite;
    animation: rotateNeg 2s linear infinite;
}
.out {
    width: 90%;
    height: 90%;
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
}
.auth .center .in,
.auth .center .middle,
.auth .center .out {
    border-left-color: transparent;
    border-right-color: transparent;
}
.half-border {
    position: absolute;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 4px solid #1961ac;
}
@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@-webkit-keyframes rotateNeg {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(-1turn);
        transform: rotate(-1turn);
    }
}
@keyframes rotateNeg {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(-1turn);
        transform: rotate(-1turn);
    }
}
.bodyBackgroundClass {
    background-image: url('/idp/themes/work/images/login-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    opacity: 1;
    animation-name: bk;
    animation-duration: 50s;
    /* animation-delay: 3s; */
    animation-iteration-count: infinite;

}
@keyframes bk {
    0%   {background-image: url('/idp/themes/work/images/login-bg.jpg');}
    20%  {background-image: url('/idp/themes/work/images/login-bg2.jpg');}
    40%  {background-image: url('/idp/themes/work/images/login-bg3.jpg');}
    60% {background-image: url('/idp/themes/work/images/login-bg4.jpg');}
    80% {background-image: url('/idp/themes/work/images/login-bg5.jpg');}
    100%   {background-image: url('/idp/themes/work/images/login-bg.jpg');}
}
