body{
    font-family:"Helvetica Neue",Helvetica,sans-serif !important;
}

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(49 53 56) 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: 30px 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;
        border-radius: 0;
        overflow-y: auto;
        max-height: 100vh;
        color: white;
        background: -webkit-linear-gradient(top,white, #313538);
        box-shadow:1px 1px 30px 1px black;
        /*background: #E8D2CC;
        border-top: 5px solid #cda781;*/
    }

    body.login .login-container {
        position: absolute;
        z-index: 10;
        width: 100%;
        padding: 50px;
        top: 45%;
        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: 15px;
            /*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: black;
        padding: 12px 20px;
        outline: 0 !important;
        opacity: .8;
        border: 1px solid white;
        width: 100px !important;
        border-radius: 10px;
        float: left;
        font-size: 16px;
        background: white;
        float: right;
        font-weight: bold;
    }

        body.login .login-button:hover {
            color: white;
            opacity: 1;
            border: 1px solid #adadad;
            background: -webkit-linear-gradient(top, #066838, #93CD46);
            transition: all 0.4s;
        }

    body.login .form-group {
        /*background-color: #F5EBE8;*/
        position: relative;
        border: none;
        border-bottom: 2px solid #d2caca;
        /*border-radius: 0px 0px 0px 10px;*/
        padding: 7px 12px 4px;
        transition: border .3s ease-in;
        font-weight: 400;
    }

        /*body.login .form-group.has-error {
            margin-bottom: 30px;
            border-color: #ed6b75;
        }

            body.login .form-group.has-error .help-block {
                position: absolute;
                top: 50px;
                left: 0;
                color: #ed6b75;
            }*/

        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;
        }

        body.login .form-group .form-control {
            color: white;
            background: #fff;
            -webkit-appearance: none;
            outline: 0;
            line-height: normal;
            vertical-align: middle;
            box-shadow: none;
            font-weight: 400;
            border: none;
            height: 25px;
            min-height: 25px;
            padding: 0;
            background: transparent;
            /*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: white;
                font-weight: 300;
            }

            body.login .form-group .form-control::-moz-placeholder {
                color: white;
                font-weight: 300;
            }

            body.login .form-group .form-control:-ms-input-placeholder {
                color: white;
                font-weight: 300;
            }

            body.login .form-group .form-control:-moz-placeholder {
                color: white;
                font-weight: 300;
            }

            body.login .form-group .form-control:focus::-webkit-input-placeholder {
                color: white;
            }

            body.login .form-group .form-control:focus::-moz-placeholder {
                color: white;
            }

            body.login .form-group .form-control:focus:-ms-input-placeholder {
                color: white;
            }

            body.login .form-group .form-control:focus:-moz-placeholder {
                color: white;
            }

@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;
    }

.help-block {
    color: #f9e10c;
    font-size: 11pt;
    height:25px;
    display:block;
}

.focus-input100 {
    position: absolute;
    display: block;
    width: calc(100% + 15px);
    height: calc(100% + 5px);
    top: -1px;
    left: -1px;
    pointer-events: none;
    border: 1px solid white;
    /*border-radius: 10px;*/
    visibility: hidden;
    opacity: 0;
    /* -webkit-transition: all 0.4s; */
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    /* -webkit-transform: scaleX(1.1) scaleY(1.3); */
    -moz-transform: scaleX(1.1) scaleY(1.3);
    -ms-transform: scaleX(1.1) scaleY(1.3);
    -o-transform: scaleX(1.1) scaleY(1.3);
    transform: scaleX(1.1) scaleY(1.3);
}

.input100:focus + .focus-input100 {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

    .input100:focus + .focus-input100 + .label-input100 {
        top: 14px;
        font-size: 13px;
    }

.has-val + .focus-input100 + .label-input100 {
    top: 14px;
    font-size: 13px;
}

.lost-pass-link {
    color: white;
    text-decoration: none;
}

    .lost-pass-link:hover {
        font-weight: bold;
        text-decoration: underline;
    }
       .login-form{
           margin-top:50px;
       }
       .input-group-text{
          background:transparent !important;
          border: none !important;
          color:white !important;
       }
       .login100-form-title{
           font-weight:bold !important;
       }