Use a standard template that copies everything
Code:
<xsl:template match="*">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
and then add a template rule that drops the first Login element:
Code:
<xsl:template match="Login[1]"/>