html {
	height:100%
}
body.signin {
	height:auto;
	background:url(../../img/login-background.jpg) no-repeat center fixed;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-size:cover;
	color:#fff;
}
.signinpanel {
	width:715px;
	height: 433px;
	background: #fff;
	position: absolute;
	left:50%;
	top: 50%;
	transform:translate(-50%,-50%);
	background:#fff url(../../img/signinpanel.jpg) no-repeat left;
	border-radius: 15px;
	overflow: hidden;
	box-shadow:0px 16px 36px 0px rgba(0,0,0,0.1);
}
.signinpanel .col-sm-7{
	width:317px;
}
.signinpanel .col-sm-7 .logo{
	width: 240px;
	height: 106px;
	margin: 70px auto 45px auto;
	display: block;
}

.signinpanel .col-sm-7 ul {
	list-style:none;
	padding:0;
}
.signinpanel .col-sm-7 ul li{
	width:240px;
	margin: 0 auto;
	height: 27px;
	line-height: 27px;
	background:url(../../img/icon1.png) no-repeat 0px;
	font-size: 13.3px;
	text-indent: 25px;
}

label.error{
	position:inherit;
	right: 0;
	top: 2px;
}

.signinpanel .col-sm-5{
	width:398px;
	padding: 22px 40px;
}

.signinpanel p{
	position: relative;
	margin-top:24px;
	display:block;
	height: 48px;
}

.signinpanel p .form-control {
	box-sizing: border-box;
	border-radius: 5px;
	height: 48px;
}

.signinpanel p .icon{
	position: absolute;
	top: 14px;
	left: 13px;
}

.signinpanel p .uname {
	color:#333;
	text-indent: 26px;
}

.signinpanel p .code {
   color:#333;
   width: 46%;
	float: left;
}

.signinpanel p .imgcode{
	width: 46%;
	height: 48px;
	float: right;
}
.signinpanel .btn {
	margin-top:38px;
	height: 48px;
	font-size: 22px;
}

.btn-success {
	background-color: #2474a6;
	border-color: #2474a6;
	color: #FFFFFF;
}

.btn-success:hover, .btn-success:focus, .btn-success:active,  .btn-success.active, .open .dropdown-toggle.btn-success {
	background-color: #1a7bb9;
	border-color: #1a7bb9;
	color: #FFFFFF;
}

@media screen and (max-width:775px) {
	.signinpanel{
		width: 80%;
		background:#fff;
	}
	.signinpanel .col-sm-7 {
		display: none;
	}
	.signinpanel .col-sm-5{
		width: 100%;
	}
}
/*
登录界面check样式
*/
.checkbox-custom {
    position: relative;
    padding: 0 15px 0 25px;
    display: inline-block;
	color: #9b9b9d;
	font-size: 16px;
	height: 18px !important;
}
/*
将初始的checkbox的样式改变
*/
.checkbox-custom input[type="checkbox"] {
    opacity: 0; /*将初始的checkbox隐藏起来*/
    position: absolute;
    cursor: pointer;
    z-index: 2;
    margin: -6px 0 0 0;
    top: 50%;
    left: 3px;
}
/*
设计新的checkbox，位置
*/
.checkbox-custom label:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -9px;
    width: 18px;
    height: 17px;
    display: inline-block;
    border-radius: 2px;
    border: 1px solid #bbb;
    background: #fff;
}
/*
点击初始的checkbox，将新的checkbox关联起来
*/
.checkbox-custom input[type="checkbox"]:checked +label:after {
    position: absolute;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    content: "\e013";
    top: 42%;
    left: 3px;
    margin-top: -5px;
    font-size: 11px;
    line-height: 1;
    width: 16px;
    height: 16px;
    color: #333;
}
.checkbox-custom label {
    cursor: pointer;
    line-height: 18px;
    font-weight: normal; /*改变了rememberme的字体*/
    margin-bottom: 0;
    text-align: left;
}
.checkbox-custom label span{
	position: relative;
	top: -4px;
}