/* =====================================================================
   RichUps — Phone OTP Pages (Phase 5A.5)
===================================================================== */

/* ─── Step indicator ─────────────────────────────────────── */
.rp-phone-steps {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0 0 28px;
}

.rp-phone-step {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #9bc4a0;
	transition: color .2s;
}

.rp-phone-step span {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #e3e8e1;
	color: #6c7c70;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	transition: all .2s;
}

.rp-phone-step.is-active {
	color: #1d3a23;
}
.rp-phone-step.is-active span {
	background: #2c5a36;
	color: #fff;
	box-shadow: 0 2px 6px rgba(28, 60, 35, 0.25);
}

.rp-phone-step-line {
	flex: 0 0 32px;
	height: 2px;
	background: #e3e8e1;
}


/* ─── OTP info banner ────────────────────────────────────── */
.rp-otp-info {
	text-align: center;
	background: #faf7f1;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 24px;
}

.rp-otp-info p {
	margin: 0;
	font-size: 13px;
	color: #6c7c70;
}

.rp-otp-info strong {
	display: block;
	font-size: 18px;
	font-weight: 700;
	color: #1d3a23;
	margin-top: 6px;
	letter-spacing: 1px;
	font-family: 'Courier New', monospace;
}


/* ─── OTP input — big & centered ─────────────────────────── */
.rp-otp-input {
	font-size: 28px !important;
	letter-spacing: 14px !important;
	text-align: center !important;
	font-family: 'Courier New', monospace !important;
	font-weight: 700 !important;
	padding-left: 14px !important;
}


/* ─── Verified success banner ────────────────────────────── */
.rp-otp-success-banner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	background: linear-gradient(135deg, #d8e7da, #e7f1e9);
	border: 1px solid #9bc4a0;
	border-radius: 10px;
	color: #1d3a23;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 22px;
}

.rp-otp-success-banner svg {
	color: #15803d;
	flex-shrink: 0;
}

.rp-otp-success-banner strong {
	font-weight: 700;
	letter-spacing: 0.5px;
}


/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 480px) {
	.rp-phone-step span {
		width: 24px;
		height: 24px;
		font-size: 11px;
	}
	.rp-phone-step {
		font-size: 11px;
	}
	.rp-phone-step-line {
		flex: 0 0 18px;
	}

	.rp-otp-input {
		font-size: 22px !important;
		letter-spacing: 10px !important;
	}
}
