[Servlet] HTTP Status 405 - HTTP method GET is not supported by this URL

Bom dia Pessoal, estou começando a estudar servlet, no meu exemplo eu possuo um formulário no meu index.html, ao submeter esse formulário com o método post eu chamo uma servlet. Tudo funciona como deveria. Porém se eu atualizado (F5) a página aparece essa mensagem para mim:

HTTP Status 405 - HTTP method GET is not supported by this URL
type Status report
message HTTP method GET is not supported by this URL
description The specified HTTP method is not allowed for the requested resource.
Apache Tomcat/8.5.3

Segue o código do meu form no meu index.html:

    <form action="Login" method="post">
        Email: <input type="text" name="email"/><br />
        Senha: <input type="password" name="senha"/><br />
        <input type="submit" name="Login"/>
    </form>

Segue minha servlet Login:

@WebServlet(urlPatterns="/Login")
public class Login extends HttpServlet {
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {

        PrintWriter writer = resp.getWriter();

        String email = req.getParameter("email");
        String senha = req.getParameter("senha");

        Usuario usuario = new UsuarioDAO().buscaPorEmailESenha(email, senha);
        
        if (usuario == null){
            writer.println("<html><body>Usuario ou senha invalida!</body></html>");
        } else {
            HttpSession session = req.getSession();
            session.setAttribute("usuario.logado", usuario);
            writer.println("<html><body>" + usuario.getEmail() + "</body></html>");
        }
    }
}

Obrigado.