I have had the same issue with Delphi 11.3 without AlphaSkins. I think I tackled this by overriding CreateParams…
procedure CreateParams(var Params: TCreateParams); override;
procedure TMainBaseForm.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
with Params do
begin
ExStyle := ExStyle and not WS_EX_APPWINDOW;
WndParent := Application.Handle;
end;
end;