/*
 *
 *   H+ - ºóÌ¨Ö÷ÌâUI¿ò¼Ü
 *   version 4.9
 *
*/

html{height: 100%;}

.loginpage {
    position: relative;
    height: 100vh;
    min-height: 700px;
    /* background: #0064f7 100% url(http://www.yulinedu.net/images/front/bg.png) no-repeat; */
    background: #0064f7 100% url(../../images/front/bg.png) no-repeat;
    background-size: cover;
    background-position: center;
}

.loginpage .logo {
    position: absolute;
    top: -100px;
    left: 0px;
    width: 400px;
}
.loginpage .container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 30px 50px;
    width: auto;
}
.loginpage .container > div {
    display: inline-block;
}
.loginpage h3 {
    text-align: center;
}
.login-info {
    display: flex;
    margin-top: 20px;
}
.login-info .imgbox {
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin-right: 20px;
}
.login-info .imgbox img {
    width: 100%;
}
.login-info h4 {
    color: #006dcd;
} 
.login-info p {
    margin-bottom: 5px;
}
.login-info p i {
    margin-right: 5px;
    color: #61aef1;
    font-size: 75%;
} 
.login-ps {
    width: 300px;
}
.login-ps .welcome {
    color: #006dcd;
    text-align: center;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}
.login-ps .welcome::after {
    content: '';
    background-color: rgba(0, 119, 219, .3);
    position: absolute;
    top: 10px;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 1px;
}
.login-ps .welcome span {
    background-color: rgba(255, 255, 255, .95);
    padding: 0 10px;
}
.login-ps form {
    margin-top: 50px;
}
.login-ps form .form-group {
    margin-bottom: 30px;
}
.login-ps form > .btn {
    margin-top: 50px;
}
.login-ps h3 a {
    margin: 0 10px;
    color: #999;
}
.login-ps h3 a.active {
    color: #333;
}
.login-ps h3 a:hover {
    text-decoration: none;
    color: #333;
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group .form-control {
    width: 1%;
    flex: 1 1 auto;
}
.input-group-append {
    box-sizing: border-box;
    margin-left: -1px;
    display: flex;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:focus, .btn-primary.focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}