.formcontain {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	font-family: Arial, sans-serif;
}
.formcontain form {
	border: 1px solid #ddd;
	padding: 20px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	border-radius: 8px;
	background: #492c2d;
	justify-content: center;
	align-items: center;
	height: auto;
	width: auto;
	font-family: Arial, sans-serif;
}
.formcontain input[type="text"],
.formcontain input[type="password"],
.formcontain input[type="date"] {
	width: 90%;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #FFFAF0;
}
.formcontain input[type="submit"] {
	width: 94%;
	padding: 10px;
	border: none;
	border-radius: 4px;
	background-color: #FFDEAD;
	color: #492c2d;
	font-size: 1em;
	cursor: pointer;
}
.formcontain input[type="submit"]:hover {
	background-color: #FFD39B;
}
.error-message {
	color: red;
	margin-left: 10px;
}
.formcontain br {
	content: "";
	margin: 0;
	padding: 0;
	line-height: 0;
}
.formcontain textarea {
	width: 90%; /* 使用百分比而非cols属性来提供响应式设计 */
	height: 150px; /* 控制高度，覆盖rows属性 */
	padding: 10px; /* 内边距增加输入区域的可读性 */
	border: 1px solid #ccc; /* 细边框提供美观的视觉效果 */
	border-radius: 5px; /* 圆角边框更加现代 */
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1); /* 轻微阴影增加深度感 */
	font-family: Arial, sans-serif; /* 字体应与网站的其余部分保持一致 */
	font-size: 16px; /* 提高可读性 */
	resize: vertical; /* 允许用户垂直调整大小，限制水平扩展 */
	background-color: #FFFAF0;
}
.formcontain label {
	font-size: 18px; /* 增加标签的可读性 */
	margin-bottom: 10px; /* 增加标签与输入框的间距 */
	display: block; /* 确保标签独占一行 */
}
