@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background: url('/static/image/pc/admin/bg.jpg') no-repeat;
	background-size: 100% 100%;
	font-family: "Microsoft YaHei", sans-serif;
	display: flex;
	flex-direction: column;
}

.container {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;
	gap: 100px;
}

.left-section {
	width: 600px;
	position: relative;
}

.logo-section {
	width: 365px;
	height: 66px;
	position: absolute;
	top: -340px;
	left: -100px;
}

.logo {
	width: 100%;
	height: 100%;
}

.logo-text {
	font-size: 28px;
	font-weight: bold;
	color: white;
}

.slogan {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 4px;
	margin-left: 46px;
}

.illustration {
	width: 100%;
	max-width: 600px;
	margin-top: 20px;
}

.right-section {
	width: 440px;
	height: 520px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	/* padding: 40px; */
	text-align: center;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.4);
	backdrop-filter: blur(10px);
	/* border: 1px solid rgba(255, 255, 255, 0.18); */
}

.qr-title {
	color: white;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
	padding-top: 50px;
}

.qr-subtitle {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	margin-bottom: 30px;
}

.qr-code {
	display: inline-block;
	background: white;
	padding: 10px;
	border-radius: 8px;
	margin: 0 auto;
}

.footer {
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 12px;
	padding: 20px;
	background: rgba(0, 0, 0, 0.1);
}

.footer a {
	color: white;
}

@media (max-width: 1200px) {
	.container {
		flex-direction: column;
		gap: 40px;
	}

	.left-section,
	.right-section {
		width: 100%;
		max-width: 500px;
	}
}