Bug - Login - header should not be inside main

Describe the problem
When using the Login component it has a header that is inside main

How do you reproduce the problem?
https://www.patternfly.org/components/login-page/react/basic/

Expected behavior
Structure should be:

<body>
 <header>
 <!-- Site-wide header content -->
 </header>
 <main>
 <!-- Main content of the page -->
<!-- in case of the login theme the login box would be shown here -->
<!-- IdP links should be shown here -->
<!-- "Login box footer" should be shown here -->
 </main>
 <footer>
 <!-- Site-wide footer content -->
 <!-- users could add some common footer links information here -->
 </footer>
</body>