/* CSS Document login.css */
.gradient-bg {
	background: linear-gradient(135deg, #165DFF 0%, #36CFC9 100%);
}
.input-focus:focus {
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}
.btn-hover:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 20px -10px rgba(102, 126, 234, 0.6);
}
.transition-all {
	transition: all 0.3s ease;
}
.tab-active {
	border-bottom: 2px solid #165DFF;
	color: #165DFF;
	font-weight: 600;
}
/* 指纹登录样式 */
.finger-login-canvas-wrap {
	background: #f3f5f0;
	border-radius: 12px;
	padding: 10px;
	max-width: 300px;
	margin: 0 auto;
	border: 2px dashed #d1d5db;
}
.finger-login-canvas-wrap canvas {
	width: 100%;
	height: auto;
	cursor: pointer;
}
.finger-status-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin-right: 6px;
}
.dot-green { background: #22c55e; }
.dot-red { background: #ef4444; }
.dot-gray { background: #9ca3af; }
.dot-yellow { background: #eab308; }