/* Registration wizard */
.reg-progress { height: 6px; background: #e4e0ec; border-radius: 999px; overflow: hidden; margin-bottom: 0.5rem; }
.reg-progress__bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); transition: width 0.25s ease; }
.reg-progress__label { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }

.reg-profile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.65rem; }
.reg-profile-card {
    border: 2px solid #e4e0ec; border-radius: 12px; padding: 1rem 0.75rem; background: #fff;
    text-align: center; cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.reg-profile-card--active { border-color: var(--primary); background: #f6f0ff; }
.reg-profile-card__title { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }

.reg-yesno, .reg-privacy { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.reg-yesno__btn, .reg-privacy__opt {
    border: 1px solid #e4e0ec; border-radius: 8px; padding: 0.45rem 0.85rem; cursor: pointer;
    font-size: 0.88rem; background: #fff;
}
.reg-yesno__btn.is-active, .reg-privacy__opt.is-active { border-color: var(--primary); background: #f6f0ff; color: var(--primary-dark); }
.reg-yesno__btn input, .reg-privacy__opt input { margin-right: 0.35rem; }

.reg-nav { display: flex; justify-content: space-between; gap: 0.75rem; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid #e4e0ec; }

.auth-otp-inputs { display: flex; gap: 0.5rem; justify-content: center; margin: 1.25rem 0; }
.auth-otp-inputs input {
    width: 2.75rem; height: 3rem; text-align: center; font-size: 1.35rem; font-weight: 700;
    border: 2px solid #e4e0ec; border-radius: 10px;
}
.auth-otp-inputs input:focus { border-color: var(--primary); outline: none; }

.auth-resend { text-align: center; font-size: 0.88rem; color: var(--text-muted); }

.pf-dial-code {
    max-width: 4.75rem;
    flex: 0 0 4.75rem;
    padding-left: 0.35rem;
    padding-right: 1.35rem;
    font-size: 0.85rem;
}
.input-group .pf-dial-code { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.pf-phone-group > .form-control:not(.pf-dial-code) {
    flex: 1 1 auto;
    min-width: 0;
}
.pf-city-suggestions { position: relative; z-index: 20; max-height: 220px; overflow-y: auto; }
.pf-city-suggestion { cursor: pointer; font-size: 0.9rem; }

.pe-parent-row .pe-parent-late-col { flex: 0 0 auto; max-width: 100%; }
.pe-parent-row .pe-parent-late {
    display: flex; align-items: center; gap: 0.35rem; padding-left: 0; margin-right: 0; white-space: nowrap;
}
.pe-parent-row .pe-parent-late .form-check-input { margin-top: 0; flex-shrink: 0; }
.pe-parent-row .pe-parent-late .form-check-label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); line-height: 1.2; }
@media (max-width: 767.98px) {
    .pe-parent-row .pe-parent-late-col { width: 100%; }
}
