I am not really sure how to phrase it correctly, but what I am interested in is the following:
... lets say I have a proposition of this form:
$$(\forall x : \text{statement 1}) \iff \text{statement 2}$$
Is this the equivalent of:
$$\forall x : (\text{statement 1} \iff \text{statement 2})$$
No, for example consider $$ \tag{a} (\forall x: x=0) \iff 1=0 $$ versus $$ \tag{b} \forall x:(x=0\iff 1=0) $$ Formula (a) is true because both sides of the $\iff$ have the same truth value, namely false.
Formula (b) is false, because setting $x=0$ makes the inner claim fail: $$ 0=0 \iff 1=0 \qquad\text{is definitely not true}$$
What is the case is that $$[\forall x: (p(x) \Leftrightarrow q)] \implies [(\forall x: p(x))\Leftrightarrow q] $$ when $x$ does not appear free in $q$. But only that direction holds in general.