I used the code below to format some information but the last line before the red line is not right aligned. I can`t find the problem in the code. Any suggestion? Thanks.
\documentclass[11pt,a4paper]{article}
\usepackage{color}
\usepackage[T1]{fontenc}
\setlength{\parindent}{0em}
\begin{document}
\begin{samepage}
{\color{blue}\hrule height 2pt}
\vspace{.1\baselineskip}
{\Large Some important text}
\hfill
{\large \textit{And more}} \\
{\small More some text}
\hfill \textit{Important person:}~Me \\[.3\baselineskip]
{Year:~2018, Volume:~1, Nr.:~1}
\hfill
Date 1: YYYY-MM-DD\\
{Classification:~A}
\hspace{\fill}
Date 2: YYYY-MM-DD
\vspace{.3\baselineskip}
{\color{red}\hrule height 2pt}
\end{samepage}
\end{document}


