@charset "utf-8";

html, body {
    min-height: 700px;
}

/*** login ***/
.login {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    background: #f5f5f5;
}
.loginBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.loginBox > div {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 400px;
    box-sizing: border-box;
}

.loginBg small {
    font-size: 13px;
    font-weight: 500;
}
.loginBg strong {
    display: block;
    margin-top: 10px;
    font-family: 'Roboto';
    font-size: 24px;
}
.loginForm h2 {
    margin-top: 29px;
    line-height: 1.1;
    font-weight: 700;
    font-size: 20px;
    color: #214681;
}
.loginForm .iconLock {
    margin-bottom: 40px;
}
.loginForm .checkTxt {
    height: 20px;
    margin: 28px 0 17px;
}
.loginForm .inputWrap {
    margin:50px 0 0;
}
.loginForm .inputWrap li{
    padding:5px 0;
}
.loginForm .inputWrap li p{
    font-size: 12px;
    color: #999;
}
.loginForm .inputWrap input[type="text"],
.loginForm .inputWrap input[type="password"]{
    height: 40px;
    padding: 0 20px;
    border: 1px solid #ddd;
    border-radius: 0;
    background: #fff;
    font-size: 14px;
    color: #333;
    margin-top: 8px;
}
.loginForm .k-ext-checkbox-item {
    margin:0;
    padding-top:10px;
}
input[type="button"].btnLogin {
    width: 100%;
    height: 46px !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 14px !important;
    color: #fff !important;
    background: #34409A !important;
}
.inputWrap + .btnLogin {
    margin-top: 50px;
}