This use case diagram isn't what I would consider correct.
First, Login isn't a use case. Use cases capture goals that an actor has when interacting with a system. Although logging in (and other forms of authentication) may be a prerequisite for achieving a goal, it isn't a goal itself. That is, no one uses a system to log in and then says that they've accomplished their goal. Because of this, there is no need to include Login as a use case on a diagram and it often adds clutter, making the diagram harder to understand.
Second, meta use cases don't belong. Again, each use case represents a goal. Because "pharmaceutical company management" isn't a specific goal that an actor has, it isn't a good use case. You seem to be using a use case to organize other use cases, which isn't their purpose.
However, as always, I would generally discourage use case diagrams. To quote Martin Fowler:
Use cases appear in the UML in the form of use case diagrams, but these diagrams are of little value - the key value of use cases lies in the text which is not standardized in UML. So when you do use cases put your energy into the text.
Instead, I'd point to various textual and tabular methods to capture use cases. Alistair Cockburn's Writing Effective Use Cases is one of the canonical texts going into detail on using use cases, including various formats and structures that may be useful.