So I have this code here,
\begin{tikzpicture}
% Draw the axes
\draw [->,black] (-1.5,0) -- (3,0) ;
\draw [->,black] (0,-1.5) -- (0,3) ;
% Draw the line
\draw[-,black](0,0)--(3,2);
% Draw the circle
\path [draw,green] (+1.5,0) circle (1.5);
\path [draw,cyan] (0,1.5) circle (1.5);
% Intersection of circle and line
\draw[dashed,cyan](0,0.93)--(1.38,0.93);
\draw[dashed,cyan](1.38,0.93)--(1.38,0);
\draw[dashed,green](0,1.38)--(2.1,1.38);
\draw[dashed,green](2.1,0)--(2.1,1.38);
% \node[] at (-0.25,1.78){$y$};
\node[] at (-0.25,0.93){$y_3$};
\node[] at (1.38,-0.25){$x_3$};
\coordinate (a) at (0,0);
\coordinate (b) at (1.38,0.93);
\draw[decorate,decoration={brace,amplitude=5pt,raise=1pt,mirror},yshift=0pt] (a) -- (b) node [midway,yshift=-10pt, xshift = 10pt]{$|z_3|$};
\node[] at (-0.25,1.38){$y_2$};
\node[] at (2.1,-0.25){$x_2$};
% \node[] at (2.9,-0.25) {$x$};
% Draw the angle
\draw [red] (0,0.3) arc (90:33:0.3);
\draw[red] (0,0.4)arc(90:33:0.4);
\node[] at (60:.6) {$\alpha$};
% Done
\end{tikzpicture}
, which gives me the following image:

However, what I would like to do is make brace/markers on the segments shown in the picture. (It is clear where I have hand-drawn them in).
How can I modify the above to be able to do so?
