@charset "utf-8";

.bgDiv{
	box-sizing: border-box;
    height: 100vh;
    background: url(../images/bj.jpg) no-repeat center;
    background-size: cover;
    position: relative;
}

.login-panel{
	background-color: #ffffff;
    width: 460px;
    left: 50%; top: 50%;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0,0,0,.1);
    padding: 65px 0 30px 0;
    position: fixed;
    transform: translate(-50%,-50%);
}

.login-panel a.login-logo {
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    width: 180px;
    height: 70px;
    margin: 0 auto;
    text-align: center;
    line-height: 70px;
    background-color: #3598E7;
    color: #fff;
    font-size: 20px;
    padding: 0 20px;
}

.login-panel a.login-logo:before,
.login-panel a.login-logo:after{
	content: "";
    width: 0;
    height: 0;
    border: 35px transparent solid;
    position: absolute;
    top: 0px;
}

.login-panel a.login-logo:before {
    border-right-color: #3598e7;
    left: -70px;
}

.login-panel a.login-logo:after {
    border-left-color: #3598e7;
    right: -70px;
}

.login-panel .form{
	padding:10px 60px;
    overflow: hidden;
}

.login-panel .form-input{
	padding: 5px 0;
    height: 44px;
    box-sizing: border-box;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
    margin-bottom: 16px;
    line-height: 30px;
    display: flex;
    flex-direction: row;
}

.login-panel .form-input i {
    font-size: 30px;
    color: #666;
    margin-right: 10px;
}

.login-panel .form-input input {
    outline: none;
    border: none;
    font-size: 16px;
    height: 100%;
    flex: 1;
    padding: 0 5px;
}

.login-panel .form-submit {
	width: 100%;
    font-size: 18px;
    font-weight: bold;
    color: white;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin: 20px auto 0;
    display: block;
    border-radius: 5px;
    cursor: pointer;
    background-color: #42a5f5;
    border: 1px solid #58aaf3;
    letter-spacing: 2px;
}

.login-panel .tip {
    color: red;
    margin: 20px 0 0;
    font-size: 15px;
    display: none;
    float: left;
}

.login-panel .form .pull-right {
    margin-top: 20px;
}

.login-panel .form .pull-right .active {
    color: #42A5F5;
    font-weight: bold;
    font-size: 16px;
}
