Ajax callback not work

The problem is a basic PHP issue, you told WordPress to call a function named get_data_from_form when the wp_ajax_get_data_from_form action happens]

add_action('wp_ajax_get_data_from_form', 'get_data_from_form' );

But no function with that name exists.

Sure you have a class with a function inside it that exists, but that’s not the same. Think of it this way, if there was a function get_data_from_form() {} in another file, how would it know the difference between that and the static member function inside your class? What if another class had a function with the same name? PHP doesn’t know, and it can’t know unless you tell it.

So instead, you need to change it from a string that contains the name of a top level function, to a reference to your static class function. E.g. [ 'Foo', 'Bar' ]. I strongly recommend reading the callable type documentation, particularly the examples at:

https://www.php.net/manual/en/language.types.callable.php

Is it a bad practice not to instantiate the class at the end of the file?

It’s good practice not to instantiate the class, but at no point in your code do you ever instantiate it. All your class methods are static, and there is no object oriented code here. Functions in a namespace would have been functionally identical and simpler.