.login .cxhr-login-panel {
	margin: 18px 0 8px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(15, 23, 42, 0.28);
}

.login .cxhr-login-panel label {
	display: block;
	margin-bottom: 6px;
	color: #e2e8f0 !important;
}

.login .cxhr-login-panel__actions {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 10px;
}

.login .cxhr-login-status {
	font-size: 12px;
	color: #cbd5e1;
	line-height: 1.5;
}

.login .cxhr-login-status.is-success {
	color: #86efac;
}

.login .cxhr-login-status.is-error {
	color: #fca5a5;
}

.cxhr-qr-modal[hidden] {
	display: none;
}

.cxhr-qr-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.cxhr-qr-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.72);
	backdrop-filter: blur(6px);
}

.cxhr-qr-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(560px, 100%);
	padding: 20px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 34px 80px rgba(15, 23, 42, 0.4);
}

.cxhr-qr-modal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.cxhr-qr-modal__head h3 {
	margin: 0;
	color: #132445;
}

#cxhr-qr-video {
	width: 100%;
	min-height: 280px;
	border-radius: 14px;
	background: #0f172a;
	object-fit: cover;
}

@media (max-width: 480px) {
	.login .cxhr-login-panel__actions {
		align-items: stretch;
	}

	.login .cxhr-login-panel__actions .button {
		width: 100%;
	}
}