/* Unique styles for First Time Login Page */
.steps { z-index: 1; display: flex; flex-direction: column; gap: 16px; }
.step-item { display: flex; align-items: center; gap: 14px; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.35); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .82rem; font-weight: 700; color: #fff; transition: background .3s; }
.step-num.done { background: rgba(255,255,255,.35); border-color: rgba(255,255,255,.6); }
.step-num.active { background: rgba(255,255,255,.9); color: var(--primary-dk); border-color: transparent; }

.step-label { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.75); }
.step-label.active { color: #fff; font-weight: 700; }

.otp-inputs { display: flex; gap: 8px; }
.otp-inputs input { width: 44px; height: 50px; text-align: center; font-size: 1.3rem; font-weight: 700; border: 1.5px solid var(--border); border-radius: 10px; background: var(--bg); color: var(--text-dark); outline: none; transition: border-color .2s, box-shadow .2s; caret-color: var(--primary); }
.otp-inputs input:focus { border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 4px rgba(249,115,22,.12); }
.otp-inputs input.err { border-color: var(--error); }

.eye-btn { position: absolute; right: 13px; background: none; border: none; cursor: pointer; color: var(--text-light); padding: 4px; line-height: 1; transition: color .2s; }
.eye-btn:hover { color: var(--primary); }

.alert-ok { display: flex; align-items: center; gap: 10px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 10px; padding: 11px 14px; margin-bottom: 16px; font-size: .92rem; color: #15803d; font-weight: 500; }
.otp-info { background: #fff7ed; border: 1px solid #fed7aa; border-radius: 10px; padding: 10px 14px; margin-bottom: 18px; font-size: .88rem; color: #92400e; display: flex; align-items: center; gap: 8px; }

.resend-row { display: flex; align-items: center; justify-content: flex-end; margin-bottom: 18px; }
.btn-resend { background: none; border: none; font-size: .88rem; font-weight: 600; color: var(--primary); cursor: pointer; padding: 0; transition: color .2s; }
.btn-resend:hover { color: var(--primary-dk); text-decoration: underline; }
.btn-resend:disabled { color: var(--text-light); cursor: default; text-decoration: none; }

.back-link { display: flex; align-items: center; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--text-mid); text-decoration: none; margin-top: 20px; transition: color .2s; }
.back-link:hover { color: var(--primary); }

.step-panel { display: none; }
.step-panel.active { display: block; }
