/**
 * NCB Email Verification – frontend styles.
 */
.ncbev-box {
	--ncbev-brand: #2563eb;
	margin: 8px 0 4px;
	font-size: 14px;
	line-height: 1.5;
}

.ncbev-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.ncbev-btn {
	appearance: none;
	border: 0;
	cursor: pointer;
	padding: 8px 14px;
	border-radius: 6px;
	background: var(--ncbev-brand);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.ncbev-btn:disabled {
	opacity: .6;
	cursor: not-allowed;
}

.ncbev-btn-secondary {
	background: #374151;
}

.ncbev-status {
	font-size: 13px;
	color: #6b7280;
}

.ncbev-box[data-state="sent"] .ncbev-status {
	color: #1d4ed8;
}

.ncbev-box[data-state="verified"] .ncbev-status {
	color: #15803d;
	font-weight: 600;
}

.ncbev-box[data-state="error"] .ncbev-status {
	color: #b91c1c;
}

.ncbev-box[data-state="verified"] .ncbev-status::before {
	content: "\2714\00a0";
}

.ncbev-box[data-state="error"] .ncbev-status::before {
	content: "\2716\00a0";
}

.ncbev-code {
	margin-top: 10px;
}

.ncbev-code-label {
	display: block;
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 4px;
}

.ncbev-code-row {
	display: flex;
	gap: 8px;
	align-items: center;
}

.ncbev-code-input {
	width: 130px;
	letter-spacing: 4px;
	text-align: center;
	font-weight: 600;
	padding: 8px 10px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 15px;
}

.ncbev-hint {
	margin-top: 8px;
}

.ncbev-suggest {
	background: none;
	border: 0;
	padding: 0;
	color: var(--ncbev-brand);
	text-decoration: underline;
	cursor: pointer;
	font-size: 13px;
}

.ncbev-locked {
	opacity: .55;
	cursor: not-allowed !important;
}
