
    .reset-form.svelte-bf3y8c {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
    }

    .form-header.svelte-bf3y8c {
        text-align: center;
        margin-bottom: 2rem;
    }

    .header-icon.svelte-bf3y8c {
        width: 64px;
        height: 64px;
        margin: 0 auto 1rem;
        background: var(--c-primary-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--c-primary);
    }

    .otp-icon.svelte-bf3y8c {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
    }

    .success-icon-wrap.svelte-bf3y8c {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
    }

    .form-title.svelte-bf3y8c {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--c-text);
        margin: 0 0 0.5rem;
    }

    .form-subtitle.svelte-bf3y8c {
        color: var(--c-text-secondary);
        font-size: 0.9rem;
        margin: 0;
        line-height: 1.6;
    }

    .otp-email.svelte-bf3y8c {
        font-weight: 700;
        color: var(--c-primary);
        font-size: 0.95rem;
        margin: 0.25rem 0 0;
    }

    .form-error.svelte-bf3y8c {
        padding: 0.75rem 1rem;
        background: var(--c-error-light);
        color: var(--c-error);
        border-radius: var(--c-radius);
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .form-group.svelte-bf3y8c {
        margin-bottom: 1rem;
    }

    .form-label.svelte-bf3y8c {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--c-text);
        margin-bottom: 0.375rem;
    }

    /* ═══ OTP Inputs ═══ */
    .otp-container.svelte-bf3y8c {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .otp-input.svelte-bf3y8c {
        width: 50px;
        height: 56px;
        border: 2px solid var(--c-border);
        border-radius: var(--c-radius);
        font-size: 1.5rem;
        font-weight: 800;
        text-align: center;
        background: var(--c-surface);
        color: var(--c-text);
        font-family: "Cairo", sans-serif;
        transition: all 0.2s ease;
        outline: none;
        caret-color: var(--c-primary);
    }

    .otp-input.svelte-bf3y8c:focus {
        border-color: var(--c-primary);
        box-shadow: 0 0 0 3px var(--c-primary-light);
    }

    .otp-input.filled.svelte-bf3y8c {
        border-color: var(--c-primary);
        background: var(--c-primary-light);
    }

    /* ═══ Buttons ═══ */
    .btn-spinner.svelte-bf3y8c {
        width: 18px;
        height: 18px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-top-color: #fff;
        border-radius: 50%;
        animation: svelte-bf3y8c-spin 0.8s linear infinite;
        display: inline-block;
        margin-inline-end: 0.5rem;
    }

    @keyframes svelte-bf3y8c-spin {
        to {
            transform: rotate(360deg);
        }
    }

    .form-footer.svelte-bf3y8c {
        text-align: center;
        margin-top: 1.5rem;
    }

    .form-link.svelte-bf3y8c {
        color: var(--c-primary);
        font-weight: 700;
        text-decoration: none;
        font-size: 0.9rem;
    }

    .form-link.svelte-bf3y8c:hover {
        text-decoration: underline;
    }

    .back-btn.svelte-bf3y8c {
        background: none;
        border: none;
        cursor: pointer;
        font-family: "Cairo", sans-serif;
        padding: 0;
    }

    /* ═══ Resend ═══ */
    .resend-section.svelte-bf3y8c {
        text-align: center;
        margin-top: 1.25rem;
    }

    .resend-text.svelte-bf3y8c {
        color: var(--c-text-muted);
        font-size: 0.85rem;
        margin: 0;
    }

    .resend-btn.svelte-bf3y8c {
        background: none;
        border: none;
        color: var(--c-primary);
        font-weight: 700;
        font-size: 0.9rem;
        cursor: pointer;
        font-family: "Cairo", sans-serif;
        padding: 0.5rem;
        transition: opacity 0.2s;
    }

    .resend-btn.svelte-bf3y8c:hover {
        opacity: 0.7;
    }

    .resend-btn.svelte-bf3y8c:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    /* ═══ Done State ═══ */
    .done-state.svelte-bf3y8c {
        text-align: center;
        padding: 2rem 0;
    }

    .done-icon.svelte-bf3y8c {
        color: #22c55e;
        margin-bottom: 1rem;
        animation: svelte-bf3y8c-scaleIn 0.4s ease-out;
    }

    @keyframes svelte-bf3y8c-scaleIn {
        from {
            transform: scale(0.5);
            opacity: 0;
        }
        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .done-title.svelte-bf3y8c {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--c-text);
        margin: 0 0 0.75rem;
    }

    .done-desc.svelte-bf3y8c {
        color: var(--c-text-secondary);
        font-size: 0.9rem;
        margin: 0;
    }

    /* ═══ Responsive ═══ */
    @media (max-width: 400px) {
        .otp-input.svelte-bf3y8c {
            width: 44px;
            height: 50px;
            font-size: 1.25rem;
        }

        .otp-container.svelte-bf3y8c {
            gap: 0.375rem;
        }
    }
