@charset "utf-8";
body{
    font-family: Arial, Helvetica, sans-serif;
    /* font: 14px "Arial Narrow" , Arial, sans-serif; */
    background-color: #06326b;
    font-size: 15px;
    width:100%;height:100%;
}
.LoginBox{
    height:380px;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    margin:auto;
}
.LoginBox .logo{
    text-align: center;
    margin-bottom:50px;
}
.login-title{
    margin-bottom: 20px;
    color: #edf4f8;
    font-size: 19px;
    font-weight: 400 !important;
}
.login-subtitle{
    color: #c9dce9;
    font-size: 17px;
    font-weight: 300 !important;
    padding-left: 10px;
}
.LoginBox .login_content{
    padding:0 30px;
}
.LoginBox .login_content .textbox-icon{line-height:32px;}
.login_btn .l-btn-text{font-size:18px;}
.login_content .textbox{border-radius: 5px;}
.icon_aooog_user{
    background:url('../Images/svg/icon_aooog_user.svg') no-repeat center center;
    background-size: 14px 16px;
}
.icon_aooog_key{
    background:url('../Images/svg/icon_aooog_key.svg') no-repeat center center;
    background-size: 14px 16px;
}
.isloading-overlay .isloading-wrapper {
    background: #FFFFFF;
    -webkit-border-radius: 7px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 7px;
    -moz-background-clip: padding;
    border-radius: 7px;
    background-clip: padding-box;
    display: inline-block;
    margin: 0 auto;
    padding: 10px 20px;
    top: 48%;
    z-index: 9000;
}
.isloading-overlay {
    position: relative;
    text-align: center;
}
.aooogLoadingIcon {
    animation: aooogLoading .9s infinite linear;
    -webkit-animation: aooogLoadingKit .9s infinite linear;
}
.iconRefreshIcon {
    float: right;
    width: 16px;
    height: 16px;
    background: url(../assets/aooog/themes/icon/reload.png) no-repeat;
    background-size: 16px 16px;
}
@-webkit-keyframes aooogLoadingKit {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}

@keyframes aooogLoading {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}