body {
    font-family: "微软雅黑";
	height:100%;
	background: url(../images/login_bg0.jpg) no-repeat center center fixed;
	background-size:100% 100%;
}
html {
	height:100%;
}
#header {
	margin-top: 25px;
	margin-bottom: 40px;
}

#header #title {
	text-align: center;
}

#header #title h1 a {
	color: white;
	text-decoration: none
}

#content {
	width: 530px;
	margin: 10px auto;
}

.content_div {
	border-radius: 1em 1em 1em 1em;
	background-color: white;
	height: 300px;
	width: 400px;
	box-shadow: 2px 2px 1px #383838;
}

#loginForm {
	padding-top: 20px;
	height: 369px;
	/* background: url(../images/loginform_bg.png) repeat-x; */
}
span.error {
    background: unset;
    padding-left: 12px;
    margin-left: 1em;
    padding-bottom: 2px;
    font-weight: unset;
    color: #EA5200;
}
.loginBtn {
    position: relative;
    font-size: 18px;
    color: #fff;
    padding: 20px;
    width: 300px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #5288C9;
    line-height: 10px;
    border-radius:5px;
}
.loginBtn.bubble:after {
  content: "";
  background: #fff;
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  margin: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.75s ease-in-out;
}
.loginBtn.bubble:active:after {
  transform: scale(0);
  opacity: 1;
  transition: 0s;
}
#errorMsg {
	height: 40px;
	/* margin: 10px auto; */
	text-align: -webkit-center;
}

#username, #password {
	height: 35px;
}

/* #submit_btn {
	width: 335px;
	height: 40px;
	font-size: 16px;
	color:white;
	font-size: 18px;
} */
span.error {
    position: absolute;
    margin-top: 13px;
    margin-left: -75px;
    font-size: 12px;
}
#footer {
    position:fixed;
    bottom:0;
	width: 100%;
	text-align: center;
    color: white;
    font-size:16px;
    margin-bottom: 15px;
}
#username:focus,#password:focus,#logincode:focus{
	border:1px solid #da4f49; 
	box-shadow:0px 0px 5px 0px #da4f49;
}
