body.login {
    background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -webkit-background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    overflow: hidden;
    background-color: #fff;
}

    body.login .faded-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(50,50,50,.5);
        background: linear-gradient(180deg,rgba(21,21,28,0) 0,rgba(21,21,28,.1) 40%,rgba(21,21,28,.3) 55%,rgba(21,21,28,.61) 75%,#15151c);
    }

    body.login .logo-title-container {
        background: linear-gradient(0deg,rgb(9 19 80) 50%, rgb(0 0 0 / 0%) 100%);
        position: absolute;
        width: 100%;
        bottom: 0;
        left: 0;
        z-index: 999;
    }

    body.login .logo {
        height: auto;
        margin: 30px auto 15px;
        padding-top: 25px;
        max-height: 80px;
    }

    body.login .copy {
        width: auto;
        padding: 120px 30px 12px;
    }

        body.login .copy h1 {
            display: inline-block;
            vertical-align: middle;
            color: #fff;
            z-index: 9999;
            text-transform: uppercase;
            font-size: 20px;
            font-weight: 500;
            top: 0;
            line-height: 45px;
        }

        body.login .copy p {
            color: #fff;
            font-size: 13px;
            opacity: .9;
            z-index: 99;
            font-weight: 400;
            left: 15px;
        }

    body.login .login-sidebar {
        min-height: 100vh;
        position: relative;
        z-index: 2;
        padding: 0;
        justify-content: center;
        background: white;
        border-top: 5px solid #091350;
        border-radius: 0;
        overflow-y: auto;
        max-height: 100vh;
    }

    body.login .login-container {
        position: absolute;
        z-index: 10;
        width: 100%;
        padding: 30px;
        top: 50%;
        transform: translateY(-50%);
        max-height: 100%;
    }

        body.login .login-container p {
            text-align: left;
            font-weight: 700;
            margin-bottom: 0;
            margin-top: 3px;
            color: #757c85;
            border-radius: 2px;
            font-size: 12px;
            text-transform: uppercase;
            width: auto;
            padding-left: 2px;
            padding-bottom: 30px;
        }

        body.login .login-container form {
            padding-top: 15px;
        }

            body.login .login-container form p {
                text-transform: none;
                font-weight: 400;
            }

    body.login .login-button {
        display: block;
        text-align: center;
        color: #eee !important;
        padding: 12px 20px;
        outline: 0 !important;
        opacity: .8;
        border: 0;
        width: auto;
        border-radius: 2px;
        float: left;
        font-size: 16px;
        font-weight: 400;
        text-transform: uppercase;
        transition: width .3s ease;
        background: #091350;
        float: right;
    }

        body.login .login-button:hover {
            color: #fff;
            opacity: 1;
        }

    body.login .form-group {
        background-color: #f0f1f5;
        position: relative;
        border: 2px solid rgba(28,43,54,.07);
        border-radius: 3px;
        padding: 7px 12px 4px;
        transition: border .3s ease-in;
        font-weight: 400;
    }

        body.login .form-group.has-error {
            margin-bottom: 35px;
            border-color: #091350;
        }

            body.login .form-group.has-error .help-block {
                position: absolute;
                top: 55px;
                left: 0;
                color: #091350;
            }

        body.login .form-group.focused {
            border-color: #02192d;
        }

        body.login .form-group label {
            margin: 0 0 3px;
            display: block;
            opacity: 1;
            transition: opacity .2s ease;
            font-weight: 500;
            font-size: 10px;
            color: #58666e;
        }

        body.login .form-group .form-control {
            background: #fff;
            -webkit-appearance: none;
            color: black;
            outline: 0;
            line-height: normal;
            vertical-align: middle;
            box-shadow: none;
            font-weight: 400;
            border: none;
            height: 25px;
            min-height: 25px;
            padding: 0;
            background: 0 0;
            transition: box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
            font-size: 16px;
        }

            body.login .form-group .form-control:focus {
                outline: 0 !important;
                box-shadow: none;
            }

            body.login .form-group .form-control::-webkit-input-placeholder {
                color: black;
                font-weight: 300;
            }

            body.login .form-group .form-control::-moz-placeholder {
                color: black;
                font-weight: 300;
            }

            body.login .form-group .form-control:-ms-input-placeholder {
                color: black;
                font-weight: 300;
            }

            body.login .form-group .form-control:-moz-placeholder {
                color: black;
                font-weight: 300;
            }

            body.login .form-group .form-control:focus::-webkit-input-placeholder {
                color: black;
            }

            body.login .form-group .form-control:focus::-moz-placeholder {
                color: black;
            }

            body.login .form-group .form-control:focus:-ms-input-placeholder {
                color: black;
            }

            body.login .form-group .form-control:focus:-moz-placeholder {
                color: black;
            }

@media(max-height: 575px) {
    body.login .login-container {
        position: static;
        transform: unset;
    }
}

@keyframes fadeIn4 {
    0% {
        opacity: 0.2;
    }

    5% {
        opacity: 0.5;
    }

    10% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeIn3 {
    0% {
        opacity: 0.2;
    }

    5% {
        opacity: 0.5;
    }

    10% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeIn2 {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeIn1 {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    40% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    95% {
        opacity: 0.7;
    }

    100% {
        opacity: 0.5;
    }
}

.wrapSlideBanner {
    height: 100vh;
    position: relative;
}

.itemSlideBanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-iteration-count: infinite;
    animation-duration: 15s;
}

    .itemSlideBanner:nth-child(4) {
        animation-name: fadeIn4;
    }

    .itemSlideBanner:nth-child(3) {
        animation-name: fadeIn3;
    }

    .itemSlideBanner:nth-child(2) {
        animation-name: fadeIn2;
    }

    .itemSlideBanner:nth-child(1) {
        animation-name: fadeIn1;
    }


@keyframes fade {
    0% {
        opacity: 0;
    }

    11.11% {
        opacity: 1;
    }

    33.33% {
        opacity: 1;
    }

    44.44% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.itemSlide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.itemSlide {
    opacity: 0;
    animation-name: fade;
    animation-duration: 12s;
    animation-iteration-count: infinite;
    position: absolute;
    left: 0;
    right: 0;
}

    .itemSlide:nth-child(1) {
        animation-delay: 0s;
    }

    .itemSlide:nth-child(2) {
        animation-delay: 6s;
    }

    .itemSlide:nth-child(3) {
        animation-delay: 12s;
    }
