html,body{
	margin: 0;
	padding: 0;
	color: #444;
	height: 100%;
	overflow: hidden;
}
*{
	box-sizing: border-box;
	outline: none;
}
body{
	background: url('../img/bg.jpg') no-repeat center;
	background-size: cover;
}
.app{
	height: 100%;
	position: relative;
}
.content{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 300px;
	transform: translateY(-50%);
	background-color: rgba(38, 74, 155, 0.8);
}
.limited{
	display: block;
	width: 1200px;
	height: 400px;
	margin: 0 auto;
	margin-top: -50px;
	position: relative;
}
.title-wrap{
	color: #fff;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.title-wrap .title{
	margin: 0;
	padding: 0;
	font-size: 42px;
	font-weight: bold;
}
.title-wrap .sub-title{
	margin: 0;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

.box{
	display: block;
	width: 400px;
	height: 400px;
	float: right;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	padding: 20px 40px;
}
.box-top{
	display: block;
	width: 100%;
}
.box-title{
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	color: #395ba9;
	margin-bottom: 2px;
}
.box-title::after{
	content: '';
	display: block;
	height: 1px;
	margin-top: 2px;
	border-bottom: 1px solid #ddd;
}
.box-sub-title{
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	color: #ccc;
}

.form{
	margin-top: 40px;
}
.form .form-item{
	display: flex;
	color: #444;
	height: 40px;
	border-radius: 5px;
	align-items: center;
	justify-content: space-between;
	border: 1px solid #ddd;
	font-size: 14px;
	margin-bottom: 10px;
}
.form .form-item:last-child{
	margin-bottom: 0;
}
.form .form-item .label{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3em;
	color:  #395ba9;
	font: inherit;
	text-align: center;
}
.form .form-item .label .icon{
	width: 20px;
	height: 20px;
}
.form .form-item .label .icon *{
	fill: #ccc;
}
.form .form-item .input{
	flex: 1;
	height: 100%;
	border: none;
	font: inherit;
	color: inherit;
	background-color: transparent;
}
.captcha{
	height: 30px;
	margin-right: 5px;
	cursor: pointer;
}
.form .form-item .input::placeholder{
	color: #ccc;
}
.button-wrap{
	text-align: center;
	margin-top: 60px;
}
.button-wrap > button{
	display: flex;
	height: 46px;
	width: 100%;
	align-items: center;
	justify-content: center;
	background-color: #395ba9;
	color: #fff;
	border: none;
	border-radius: 30px;
}
.button-wrap > button:disabled{
	background-color: #ccc;
	color: #aaa;
}

.memory{
	display: flex;
	font-size: 14px;
}
.memory input{
	margin-right: 5px;
}