/* CSS Document reg.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;
}
.tip-success { color: #10b981 !important; }
.tip-error { color: #ef4444 !important; }
.tip-warning { color: #f59e0b !important; }
.tip-info { color: #3b82f6 !important; }
.driver-status-box {
	border-radius: 12px;
	padding: 24px;
	text-align: center;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
}
.driver-status-box .icon-big {
	font-size: 48px;
	margin-bottom: 12px;
	display: block;
}
.driver-status-box .btn-download {
	display: inline-block;
	margin-top: 12px;
	padding: 10px 28px;
	background: #3b82f6;
	color: white;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}
.driver-status-box .btn-download:hover {
	background: #2563eb;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
}
.driver-status-box .btn-download i {
	margin-right: 8px;
}
.driver-loading {
	animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}