How can I obtain the same angle of an trapezium node with one and two text lines? When I write two lines of text, it always results in a different angle according to the figure below.
MWE:
\documentclass[tikz, margin=3mm]{standalone}
\usetikzlibrary{arrows.meta,shapes}
\begin{document}
\begin{tikzpicture}[node distance = 1.5cm]
% Styles
\tikzstyle{start} = [rectangle, rounded corners, text width=3cm, minimum height=1cm, draw=black, text centered]
\tikzstyle{process} = [rectangle, text width=3cm, minimum height=1cm, draw=black, text centered]
\tikzstyle{input} = [trapezium, trapezium left angle=70, trapezium right angle=110, text width=2.8cm, minimum height=1cm, text centered, trapezium stretches=true, draw=black]
\tikzstyle{arrow} = [thick,->,>=latex]
% Nodes
\node (start) [start] {Start};
\node (P1) [process,below of=start] {Step 1};
\node (I1) [input,left of=P1, xshift=-3.0cm] {Input one: two lines long};
\node (P2) [process,below of=P1] {Step 2};
\node (I2) [input,left of=P2, xshift=-3.0cm] {Input two};
\node (P3) [process,below of=P2] {Step 3};
\node (I3) [input,left of=P3, xshift=-3.0cm] {Input three: two lines long};
\node (stop) [start,below of=P3] {Stop};
% Arrows
\draw [arrow] (start) -- (P1);
\draw [arrow] (I1) -- (P1);
\draw [arrow] (P1) -- (P2);
\draw [arrow] (I2) -- (P2);
\draw [arrow] (P2) -- (P3);
\draw [arrow] (I3) -- (P3);
\draw [arrow] (P3) -- (stop);
\end{tikzpicture}
\end{document}

