@font-face {
    font-family: 'K2D-Light';
    src: url('../fonts/K2D-Light.eot');
    src: url('../fonts/K2D-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/K2D-Light.woff2') format('woff2'), url('../fonts/K2D-Light.woff') format('woff'), url('../fonts/K2D-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'K2D-Bold';
    src: url('../fonts/K2D-Bold.eot');
    src: url('../fonts/K2D-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/K2D-Bold.woff2') format('woff2'), url('../fonts/K2D-Bold.woff') format('woff'), url('../fonts/K2D-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'K2D-Regular';
    src: url('../fonts/K2D-Regular.eot');
    src: url('../fonts/K2D-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/K2D-Regular.woff2') format('woff2'), url('../fonts/K2D-Regular.woff') format('woff'), url('../fonts/K2D-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

html, body {
    background-color: #efefef;
    color: #636b6f;
    margin: 0;
}

body{
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.box-login{
    width: 450px;
    padding-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.bg-login{
    display: flex;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right 0;
}

.bg-login p{
    position: absolute;
    top: -50%;
    width: 100%;
    height: 200%;
    z-index: 100;
    background-image: url('../../images/bg-login-line.png');
    background-repeat: repeat-y;
    background-position: right 0;

}

.login-title{
    font-family: 'K2D-Bold';
    text-align: center;
    margin-bottom: 130px;
    font-size: 42px;
    color: #000;

}

.login-content{
    padding: 40px;
    background-color: #fff;
    border: 1px solid #dadada;
    border-radius: 8px;
}

.login-image{
    position: relative;
    width: 100px;
    height: 100px;
    margin: -100px auto 0;
    border-radius: 50%;
    border: 5px solid #d6d6d6;
    background-color: #206ba4;
    text-align: center;
    overflow: hidden;
}
.login-image i{
    color: #fff;
    font-size: 48px;
    margin-top: 28px;
}

.login-image img{
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 100% !important;
    max-width: 120%;
    min-height: 100% !important;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

#form-login{
    margin-top: 45px;
}

.show-pass{
    position: absolute;
    font-size: 15px;
    right: 5px;
    top: 11px;
    z-index: 15;
    cursor: pointer;
}

#form-login .form-group{
    margin-bottom: 20px;
}

#form-login input.form-control{
    font-family: Arial, Helvetica, sans-serif;
    border: 0;
    color: #545454;
    font-size: 13px;
    border-radius: 0;
    padding-right: 35px;
    border-bottom: 1px dashed #bfbfbf;
    background-color: transparent;
}

::-webkit-input-placeholder { /* Edge */
    color: #545454 !important;
}
  
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #545454 !important;
}
  
::placeholder {
    color: #545454 !important;
}

#form-login .input-group-text{
    background-color: transparent;
    border-radius: 0;
    padding: 0 9px;
    border: 0;
    font-size: 20px;
    color: #206ba4;
    border-bottom: 1px dashed #bfbfbf;

}
#form-login input.form-control:-webkit-autofill,
#form-login input.form-control:-webkit-autofill:hover,
#form-login input.form-control:-webkit-autofill:focus {
    border: 0;
    border-radius: 0;
    border-bottom: 1px dashed #bfbfbf;
    -webkit-box-shadow: 0 0 0px 1000px #f8f8f8 inset;
    background-color: transparent;
}

.remember{
    width: 90%;
}

.remember span{
    color: #206ba4;
    font-size: 12px;
}

.remember small{
    font-size: 10px;
    color: #5b656a;
}

.forgot{
    color: #206ba4;
    font-size: 12px;
}
.forgot i{
    font-size: 8px
}


.forgot:hover{
    color: #000;
}

.login-footer{
    margin-top: 20px;
    clear: both;
}

.login-footer label{
    width: 100%;
}

.has-error{
    display: block;
    color: #f00;
    font-size: 12px;
    font-style: italic;
    padding-bottom: 10px;
}

#form-login .error input.form-control{
    border-bottom-color: #f00;
}
#form-login .error input.form-control::-webkit-input-placeholder{
    color: #f00;
}
#form-login .error input.form-control::-moz-placeholder{
    color: #f00;
}
#form-login .error input.form-control:-ms-input-placeholder{
    color: #f00;
}
#form-login .error input.form-control:-moz-placeholder {
    color: #f00;
}
#form-login .error .input-group-text{
    border-bottom-color: #f00;
    color: #f00;
}

#form-login .error .has-error{
    display: block;
}

#form-login  button{
    font-family: 'K2D-Bold';
    border: 2px solid #206ba4;
    color: #206ba4;
    font-weight: bold;
    padding: 4px 25px 4px;
    border-radius: 25px;
    margin-top: 50px;
}
#form-login  button:hover{
    background-color: #206ba4;
    color: #fff;
}

.copyright{
    position: fixed;
    bottom: 20px;
    right: 0;
    width: 50%;
    text-align: center;
    z-index: 100;
    color: #969696;
}
.copyright a{
    color: #78afd8;
}

@media screen and (max-width:768px){

    .bg-login {
        display: flex;
        width: 300%;
        display: none;
    }

    .box-login{
        position: fixed;
        top: 0;
        left: 0;
        margin: 0 2%;
        width: 96%;
        padding-top: 30px;
    }

    .login-content{
        padding: 40px 20px;
        background-color: #fff;
        border: 1px solid #dadada;
        border-radius: 8px;
    }

    .login-title {
        margin-bottom: 100px;
        font-size: 38px;
    }

    #form-login button{
        margin-top: 40px;
    }

    .copyright{
        position: fixed;
        bottom: 20px;
        right: 0;
        width: 100%;
    }

    .login-footer .pull-right{
        width:100%
    }
}