body{
	background-image: url(../images/background-img.png);
	background-size: 100% 100%;
	height: 100vh;
	padding-top: 32.64vh;
}
.module{
	width: 89.60%;
	padding: 20px 14px 32px;
}
/* 说明 */
.instructions{
	background: #eaf0f4;
	border-radius: 24px;
	font-size: 12px;
	color: #065fd5;
	padding: 8px 24px;
}
/* 表单 */
.form{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 79.05%;
	margin: auto;
}
.form .input{
	width: 100%;
	font-size: 16px;
	padding: 6px;
	border: 0 solid transparent;
	border-bottom: 1px solid #CCC;
	outline: 0;
	margin-top: 16px;
}
input::placeholder{
	color: #989898
}
button[type=submit]{
	width: 100%;
	height: 44px;
	background: #065fd5;
	border-radius: 2px;
	font-size: 20px;
	color:white;
	outline: 0;
}
button.btn:active{
	opacity: .8;
}
button.btn:focus{
	box-shadow: none;
}