/* Minification failed. Returning unminified contents.
(97,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(98,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(101,44): run-time error CSS1039: Token not allowed after unary operator: '-shadow-blur'
(101,63): run-time error CSS1039: Token not allowed after unary operator: '-shadow-color'
 */
#loginForm {
    box-shadow: 1px 0 8px rgba(0, 0, 0, 0);
    z-index: 5;
}

#LoginFormElement {
    background-color: inherit;
    width: 280px;
}

#loginForm .checkbox input {
    background-color: #ffffff;
    border: none;
    font-size: 20px;
    height: 20px;
    width: 20px;
}

#loginForm label[for="RememberMe"] {
    margin-left: 10px;
}

#loginForm input {
    border-radius: 0;
}

#loginForm a {
    color: #ffffff;
}

#loginForm .divUserName,
#loginForm .divPassword {
    position: relative;
}

#loginForm .divUserName input,
#loginForm .divPassword input {
    padding-left: 30px !important;
}

#loginForm .divUserName:before {
    color: #096f9e;
    content: "\f007";
    font-family: "FontAwesome";
    font-size: 16px;
    left: 10px;
    position: absolute;
    top: 6px;
}

#loginForm .divPassword:before {
    color: #969696;
    content: "\f023";
    font-family: "FontAwesome";
    font-size: 16px;
    left: 10px;
    position: absolute;
    top: 6px;
}

#divForgotPassword a {
    color: #ffffff;
    margin-top: -10px;
    text-transform: uppercase;
}

#loginErrorsWrapper {
    left: 0;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: 10;
}

#HeroUnit {
    float: right;
    height: 100vh;
    overflow: hidden;
    position: relative;
    width: calc(100% - 480px);
}

#HeroUnit p {
    font-size: 84px;
    font-weight: 700;
    left: 0;
    line-height: 64px;
    letter-spacing: -3px;
    padding-bottom: 10vh;
    position: absolute;
    text-transform: uppercase;
    top: calc(50% - 128px);
    width: 720px;
}

#HeroUnit #dsMark {
    --shadow-blur: 0.6rem;
    --shadow-color: rgba(0, 0, 0, 0.5);
    width: 720px;
    height: auto;
    filter: drop-shadow(0.3rem 0.3rem var(--shadow-blur) var(--shadow-color));
    filter: drop-shadow(0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.5));
    position: relative;
    top: 0;
    left: 120px;
}

@keyframes kb2 { /* set to work with 1450x1495px images */
    0% {
        transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    }
    60% {
        transform: scale3d(1.1, 1.1, 1.1) translate3d( calc(-0.2 * (1400px - (100% - 480px)) / 2), calc(-0.6 * (1495px - 100vh) / 2), 0 );
        animation-timing-function: ease-out;
    }
    95% {
        transform: scale3d(1.25, 1.25, 1.25) translate3d(-72px, -100px, 0);
        animation-timing-function: ease-in;
    }
    100% {
        transform: scale3d(1.25, 1.25, 1.25) translate3d(-72px, -100px, 0);
    }
}

/* Below window.innerWidth: 1490px, initial image doesn't fill #HeroUnit */
@media screen and (max-width: 1489px) {
    #HeroUnit {
        display: none;
    }
}

@media screen and (min-width: 1490px) { /* set to work with 1450x1495px images */
    #HeroUnit {
        display: block;
        position: relative;
        width: calc(100% - 480px);
    }

    #HeroUnit .bgImg {
        filter: blur(10px);
        height: auto;
        left: 0;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        top: calc(((1495px - 100vh) / 2) * -1);
        transform: scale3d(1, 1, 1);
        width: 110%;
    }
}

@media screen and (min-width: 1920px) and (max-height: 1495px) {
    #HeroUnit .bgImg {
        animation: kb2 10s infinite;
    }
}

