I am going to scrape the https://www.trademap.org/Index.aspx website. If I click the login button the small popup login will appear. However, list of ID does not include this small window. For example, I tried to wait until "LOG IN" button becomes available, unfortunately resulting in Unable to locate element (i put time to sleep also). How can I get access to ID in this small window

I tried:
#WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.ID, "PageContent_Login1_Button")))
#driver.find_element_by_id('PageContent_Login1_UserName').send_keys(username)
#driver.find_element_by_id('PageContent_Login1_Password').send_keys(password)
driver.find_element_by_name('ctl00$PageContent$Login1_UserName').send_keys("my_first_name")