/* ============================================================
   Aive — forgot_password.css
   비밀번호 재설정 페이지 전용 스타일 (3단계 인디케이터)
   ============================================================ */

.fp-steps {
	display: flex;
	gap: 8px;
	margin-bottom: 32px;
}

.fp-step {
	flex: 1;
	height: 3px;
	border-radius: 2px;
	background: var(--line);
	transition: background 0.3s;
}

.fp-step.active { background: var(--accent); }
.fp-step.done   { background: var(--accent-soft); }

.fp-step-label {
	margin-top: 10px;
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--text-mute);
	letter-spacing: 0.08em;
}
