Hey @Jino, glad you are liking selenium but there are many more things to selenium. Anyways, you can use different types of locators to find element.
Here is what I used the basic one using Xpath, take a look.
driver.get("https://www.edureka.co");
driver.findElement(By.className("_2zrpKA")).sendKeys("email@gmail.com");
driver.findElement(By.xpath("/html/body/div[2]/div/div/div/div/div[2]/div/form/div[2]/input")).sendKeys("pa55word");
driver.findElement(By.xpath("/html/body/div[2]/div/div/div/div/div[2]/div/form/div[3]/button")).click();
Try this, it works.