.otp-group {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.otp-input {
	width: 44px;
	height: 52px;
	text-align: center;
	font-size: 1.375rem;
	font-family: var(--font-mono);
	font-weight: 600;
	border: 1.5px solid var(--color-border-secondary);
	border-radius: var(--border-radius-md);
	background: var(--color-background-primary);
	color: var(--color-text-primary);
	outline: none;
	transition:
		border-color var(--transition-fast),
		box-shadow var(--transition-fast);
	-moz-appearance: textfield;
}

.otp-input::-webkit-outer-spin-button,
.otp-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.otp-input:focus {
	border-color: var(--color-text-success);
	box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

#qrcode {
	margin-bottom: 1rem;
	padding: 5px;
	background: #fff;
	min-width: 190px;
	min-height: 190px;
}
