the input email like firs name and last name is invalid but the color on CSS dent match. I don't know what is a difference between this tow I change type of email to text but no direness the email input should be invalid but it doesn't
ngOnInit(){
this.reactiveForm=new FormGroup({
firstname:new FormControl(null,Validators.required),
lastname:new FormControl(null,Validators.required),
email:new FormControl(null,[Validators.required]),
country:new FormControl("iran"),
gender:new FormControl("other"),
hobbies:new FormControl(null),
});
}