 /* 背景装饰元素 */
.bg-decoration {
	position: absolute;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
	top: -50%;
	left: -50%;
	z-index: 0;
}

.login-container {
	width: 400px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 40px 30px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

.system-title {
	text-align: center;
	color: #fff;
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: 300;
	letter-spacing: 2px;
}

.layui-form-item {
	margin-bottom: 20px;
}

.layui-input {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	height: 45px;
	border-radius: 6px;
	padding-left: 15px;
}

.layui-input:focus {
	border-color: #5FB878;
	box-shadow: 0 0 5px rgba(95, 184, 120, 0.3);
}

.layui-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.verify-code-container {
	display: flex;
	gap: 10px;
}

.verify-code-input {
	flex: 1;
}

.verify-code-img {
	width: 120px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s;
	overflow: hidden;
}

.verify-code-img:hover {
	background: rgba(255, 255, 255, 0.15);
}

#verifyCanvas, #forgotVerifyCanvas {
	width: 100%;
	height: 100%;
}

.login-options {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	font-size: 14px;
}

.remember-me {
	color: rgba(255, 255, 255, 0.7);
}

.links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	margin-left: 15px;
	transition: color 0.3s;
}

.links a:hover {
	color: #5FB878;
}

.login-btn {
	width: 100%;
	height: 45px;
	background: linear-gradient(90deg, #5FB878, #4CAF50);
	border: none;
	border-radius: 6px;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
}

.login-btn:hover {
	background: linear-gradient(90deg, #4CAF50, #5FB878);
	box-shadow: 0 5px 15px rgba(95, 184, 120, 0.4);
}

.footer {
	margin-top: 30px;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.logo {
	width: 40px;
	height: 40px;
	margin-bottom: 10px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
}

.company-name {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

/* 模态框样式 */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 100;
	justify-content: center;
	align-items: center;
}

.modal-content {
	width: 450px;
	background: rgba(30, 30, 46, 0.95);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
}

.modal-title {
	text-align: center;
	color: #fff;
	font-size: 20px;
	margin-bottom: 25px;
	font-weight: 300;
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 20px;
	cursor: pointer;
	transition: color 0.3s;
}

.close-btn:hover {
	color: #5FB878;
}

.modal-footer {
	margin-top: 20px;
	text-align: center;
}

.modal-btn {
	width: 100%;
	height: 45px;
	background: linear-gradient(90deg, #5FB878, #4CAF50);
	border: none;
	border-radius: 6px;
	color: white;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s;
}

.modal-btn:hover {
	background: linear-gradient(90deg, #4CAF50, #5FB878);
	box-shadow: 0 5px 15px rgba(95, 184, 120, 0.4);
}

.modal-hint {
	font-size: 14px;
	color: rgba(255, 255, 0, 0.7);
}

.sms-code-container {
	display: flex;
	gap: 10px;
}

.sms-code-input {
	flex: 1;
}

.get-sms-btn {
	width: 130px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition: all 0.3s;
}

.get-sms-btn:hover {
	background: rgba(255, 255, 255, 0.15);
}

.get-sms-btn:disabled {
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.3);
	cursor: not-allowed;
}