html {
	background-color: #D8ECEE;
}
#app {
	min-height: 100vh;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	margin: auto;
	overflow: auto;
	/* background-image: linear-gradient(to bottom, skyblue, pink); */
	background-color: #D8ECEE;
	background-attachment: fixed;
}
.enter {
	margin: auto;
	width: 100%;
	padding: 20px 0;
}
.enter>input[name="code"] {
	border: none;
	width: 96%;
	max-width: 320px;
	height: 56px;
	display: block;
	background-color: white;
	box-sizing: border-box;
	border-radius: 12px;
	text-align: center;
	margin: 10px auto;
	font-size: 28px;
	font-weight: bold;
	padding: 0 1em;
	letter-spacing: 5px;
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.2);
	transition: 0.2s ease all;
}
.enter>input[name="code"]::placeholder {
	font-size: 20px;
	letter-spacing: 0px;
	color: rgba(0,0,0,0.5);
}
.enter>input[name="code"]:hover {
	box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.2);
}
.tip {
	font-size: 14px;
	width: fit-content;
	max-width: 320px;
	color: #555;
	font-weight: normal;
	margin: 10px auto;
}