/* ProID MFA client-zone styles. Neutral and self-contained so the plugin
   looks tidy inside the theme; the accent is a single variable to rebrand. */
.proid-mfa-box {
	--proid-accent: #2f5bea;
	--proid-accent-dark: #1f43b8;
	--proid-ink: #1d2433;
	--proid-line: #e2e6ef;
	max-width: 460px;
	margin: 3rem auto 6rem;
	padding: 2rem 2rem 2.25rem;
	background: #fff;
	border: 1px solid var(--proid-line);
	border-radius: 14px;
	box-shadow: 0 12px 40px -24px rgba(20, 32, 64, .45);
	color: var(--proid-ink);
	font-size: 15px;
	line-height: 1.55;
}

.proid-mfa-box p {
	margin: 0 0 1rem;
}

.proid-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
}

.proid-form label {
	display: flex;
	flex-direction: column;
	gap: .35rem;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: .01em;
}

.proid-form input[type="text"],
.proid-form input[type="password"] {
	padding: .7rem .85rem;
	border: 1px solid var(--proid-line);
	border-radius: 9px;
	font-size: 16px;
	font-weight: 400;
	background: #fbfcfe;
	transition: border-color .15s, box-shadow .15s;
}

.proid-form input:focus {
	outline: none;
	border-color: var(--proid-accent);
	box-shadow: 0 0 0 3px rgba(47, 91, 234, .15);
	background: #fff;
}

.proid-check {
	flex-direction: row !important;
	align-items: center;
	gap: .5rem !important;
	font-weight: 500 !important;
}

.proid-btn {
	display: inline-block;
	padding: .75rem 1.2rem;
	border: 0;
	border-radius: 9px;
	background: var(--proid-accent);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	transition: background .15s, transform .05s;
}

.proid-btn:hover {
	background: var(--proid-accent-dark);
	color: #fff;
}

.proid-btn:active {
	transform: translateY(1px);
}

.proid-btn:disabled {
	opacity: .6;
	cursor: default;
}

.proid-btn-ghost {
	background: transparent;
	color: var(--proid-ink);
	border: 1px solid var(--proid-line);
}

.proid-btn-ghost:hover {
	background: #f4f6fb;
	color: var(--proid-ink);
}

.proid-alert {
	padding: .7rem .85rem;
	margin-bottom: 1rem;
	background: #fdecec;
	border: 1px solid #f5c2c2;
	border-radius: 9px;
	color: #a12626;
	font-size: 14px;
}

.proid-status {
	padding: .7rem .9rem;
	border-radius: 9px;
	font-size: 14px;
	margin-bottom: 1.1rem;
}

.proid-status-on {
	background: #e8f6ec;
	border: 1px solid #b7e2c3;
	color: #1f6b39;
}

.proid-status-off {
	background: #fff5e6;
	border: 1px solid #f3d8a6;
	color: #8a5a12;
}

.proid-enroll {
	margin-top: 1.4rem;
	padding-top: 1.4rem;
	border-top: 1px solid var(--proid-line);
}

.proid-steps {
	margin: 0 0 1.2rem;
	padding-left: 1.1rem;
	font-size: 14px;
	color: #4a5468;
}

.proid-steps li {
	margin-bottom: .4rem;
}

.proid-qr {
	display: flex;
	justify-content: center;
	margin: 0 0 .9rem;
}

.proid-qr img {
	width: 220px;
	height: 220px;
	border: 1px solid var(--proid-line);
	border-radius: 12px;
	padding: 8px;
	background: #fff;
}

.proid-secret {
	text-align: center;
	font-size: 13px;
	color: #6b7384;
}

.proid-secret code {
	font-size: 13px;
	background: #f4f6fb;
	padding: .15rem .4rem;
	border-radius: 5px;
	letter-spacing: .04em;
	word-break: break-all;
}

.proid-msg {
	margin-top: .9rem;
	font-size: 14px;
	min-height: 1.2em;
}

.proid-msg.is-ok {
	color: #1f6b39;
}

.proid-msg.is-err {
	color: #a12626;
}

.proid-logout {
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--proid-line);
}
