For the RegionPlot command, the code PlotLegends -> {Style[,],Style[,]} generates plot legend outside the graphic. But I need to generate the legend inside the graphic, precisely, on the domain $y < f(x)$ there must be corresponding legend.
How to do that?
For concreteness, I want the following (see picture).
Each of legends is located inside the corresponding domain. The code corresponding to picture is
RegionPlot[{y > -6 - 3/2*x, y > -12 + x/4}, {x, -20, 10}, {y, -20, 20}, PlotLegends -> {Style["Lifetime", FontSize -> 20], Style["Angular approximation", FontSize -> 20]}, FrameLabel -> {Subscript[Log, 10][ "\!\(\*SubscriptBox[\(m\), \(\[Theta]\)]\)"/"eV"], Subscript[Log, 10][ "\!\(\*SubscriptBox[\(g\), \(\[Gamma]\)]\)"/ "\!\(\*SuperscriptBox[\(GeV\), \(-1\)]\)"]}, RotateLabel -> False, LabelStyle -> (FontSize -> 15), Frame -> True] 

