/* 登录 / 注册页共用头部（紧凑单行） */
.auth-header {
	background: #fff;
	border-bottom: 1px solid #e8ecf2;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

.auth-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 52px;
	gap: 16px;
}

.auth-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	text-decoration: none;
	flex-shrink: 1;
}

.auth-brand:hover .auth-brand-name {
	color: #0962d6;
}

.auth-brand-logo {
	width: 88px;
	height: auto;
	display: block;
	flex-shrink: 0;
}

.auth-brand-name {
	font-size: 15px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1;
	white-space: nowrap;
	transition: color 0.2s;
}

.auth-brand-divider {
	color: #cbd5e1;
	font-size: 14px;
	line-height: 1;
	flex-shrink: 0;
}

.auth-page-label {
	font-size: 14px;
	font-weight: 500;
	color: #0962d6;
	line-height: 1;
	white-space: nowrap;
}

.auth-header-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
	font-size: 12px;
	color: #64748b;
}

.auth-hotline {
	white-space: nowrap;
}

.auth-hotline em {
	font-style: normal;
	color: #de0770;
	font-weight: 500;
}

.auth-header-nav {
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.auth-nav-link {
	color: #0962d6;
	text-decoration: none;
}

.auth-nav-link:hover {
	color: #0053e3;
	text-decoration: underline;
}

.auth-nav-link.is-current {
	color: #94a3b8;
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

.auth-nav-sep {
	color: #cbd5e1;
	user-select: none;
}

.auth-page.register-page {
	background: #f4f7fb;
}

.auth-page.register-page .body_pannel {
	background: #f4f7fb;
}

@media (max-width: 900px) {
	.auth-header-inner {
		height: auto;
		min-height: 48px;
		padding: 8px 0;
		flex-wrap: wrap;
	}

	.auth-brand-divider,
	.auth-page-label {
		display: none;
	}

	.auth-header-meta {
		width: 100%;
		justify-content: space-between;
	}
}

@media (max-width: 560px) {
	.auth-hotline {
		display: none;
	}
}
