@import "http://cdn.bootcss.com/font-awesome/4.5.0/css/font-awesome.min.css";

.main{
	background: url(../images/5-8.png) no-repeat;
	background-size: 120% auto;
	background-position-x: 20%;
}
.nav_header{
	width: 100%; 
	text-align: right; 
	line-height: 30px;
}
.quadrate{
	width: 440px;
	height: 400px;
	background: #fff;
	margin: 0 auto;
	margin-top: 40px;
	-moz-box-shadow:0px 0px 10px #999; 
	-webkit-box-shadow:0px 10px 10px #999; 
	box-shadow:0px 0px 10px #999;
	border-radius: 4px;
}
#form_title{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin: 15px 0 15px 0;
	float: left;
	width: 100%;
	color: #666; 
}
.form-horizontal .form-group{
	margin-left: 0;
	margin-right: 0;
}
.text-left{
	margin: 0;
	padding: 0;
	height: 40px;
	margin-left: 30px;
	line-height: 40px;
	text-align: left;
	color: #999;
	font-size: 15px;
}
.help-block {

    display: block;
    margin-top: 3px;
    margin-bottom: 4px;
    color: #999;
    font-size: 12px;
    
}
.help-block ul li{
	margin-left: 15px;
}
.form-group {
	margin-bottom: -10px;
}
.form-control{
	border-radius: 20px;
	height: 40px;
}
.auth_code{
	position: relative;
}
#_sendcode{
	position: absolute;
	top: 0;
	right: 15px;
	width: 40%;
	font-size: 12px;
	color: #fff;
	background: #2875D4;
}
.nu_login{
	text-align: center;
	margin-top: 25px;
	font-size: 14px;
	color: #999;
	font-weight: bold;
}
.nu_login a{
	color: #4FC877;
	text-decoration:underline; 
}
.btn {
		padding: 5px 15px;
		border-radius: 25px;
		font-size: 20px;
	}
	.controls{
		height: 71px;
	}
.select {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 325px;
    vertical-align: middle;
    text-align: left;
    font-size: 1.5rem;
    user-select: none;
    -webkit-touch-callout: none;
}
.select .placeholder {
	margin-top: 0px;
    position: relative;
    border-color: #ccc;
    border-width: 1px;
    border-style: solid;
    display: block;
    font-size: 1.5rem;
    color: #999;
    background-color: #393d41;
    z-index: 1;
    padding: 0.9em;
    border-radius: 6px;
    cursor: pointer;
    padding-right: 2.5em;
    height: 100%;
}
.select .placeholder:hover {
    background: #34383c;
}
.select .placeholder:after {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'FontAwesome';
    content: '\f078';
    z-index: 10;
}
.select.is-open .placeholder:after {
    content: '\f077';
}
.select.is-open ul {
    display: block;
}
.select.select--light .placeholder {
    background: #fff;
    color: #ccc;
}
.select.select--light .placeholder:hover {
    background: #fff;
    color: #333;
}
.select ul {
    display: none;
    position: absolute;
	overflow: scroll;
    height: 250px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    border-width: 1px;
    border-color: #ccc;
    border-style: solid;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 5px 0 0 0;
    padding: 0;
    z-index: 100;
}
.select ul li {
    display: block;
    text-align: left;
    padding: 0.8em 1em 0.8em 1em;
    color: #333;
    cursor: pointer;
}
.select ul li:hover {
    background: #4ebbf0;
    color: #fff;
}
#form_btn{
	height: 50px;
}
@media screen and (max-width: 767px) {
	#form{
		clear: both;
	}
	.main{
		background: url(../images/5-8.png) no-repeat;
		background-size: 200% auto;
		background-position-x: 60%;
	}
	.quadrate{
		width: 100%;
		height: auto;
		background: #fff;
		margin: 0 auto;
		margin-top: 80px;
		-moz-box-shadow:0px 0px 0px #999; 
		-webkit-box-shadow:0px 0px 10px #999; 
		box-shadow:0px 0px 0px #999;
		border-radius: 0px;
	}
	#form_title{
		text-align: center;
		font-size: 18px;
		font-weight: bold;
		margin: -55px 0 10px 0;
		float: left;
		width: 100%; 
		color: white; 
	}
	label{
		display: none;
	}
	.form-horizontal .form-group{
		margin-left: 0;
		margin-right: 0;
	}
	.controls{
		height: 71px;
	}
	#phone .controls{
		margin-top: 30px;
	}
	.text-left{
		margin: 0;
		padding: 0;
		height: 40px;
		margin-left: 30px;
		line-height: 40px;
		text-align: left;
		color: #999;
		font-size: 15px;
	}
	.form-group {
		margin-bottom: 7px;
	}
	.form-control{
		border-radius: 6px;
		height: 50px;
	}
	.auth_code{
		position: relative;
	}
	#_sendcode{
		position: absolute;
		top: 0;
		right: 15px;
		width: 40%;
		font-size: 12px;
		color: #fff;
		background: #2875D4;
		margin: 2px;
    	height: 46px;
	}
	.nu_login{
		text-align: center;
		margin-top: 35px;
		font-size: 14px;
		color: #999;
		font-weight: bold;
	}
	.nu_login a{
		color: #4FC877;
		text-decoration:underline; 
	}
	.btn {
		padding: 12px 15px;
		border-radius: 6px;
		font-size: 20px;
	}
	#form_btn{
		margin-top: 10px;
	}
}

@media screen and (max-width: 320px) {
	.nav_header{
		font-size: 10px;
	}
	.quadrate{
		margin-top: 60px;
	}
	.form-control{
		height: 40px;
	}
	.controls{
		height: 60px;
	}
	#_sendcode{
		height: 36px;
	}
	.select span.placeholder{
		height: 40px;
		padding: 0.6em;
	}
	#form_btn{
		margin-top: 10px;
	}
	.btn {
		padding: 8px 15px;
		border-radius: 6px;
		font-size: 16px;
	}
}
