Safari has its own amazing styles with it. Most of them are pretty cool and makes the browser stand out. But some of them can affect the screen structure. One of them would be the blue outline that textboxes have on focus.
The solution to this is a simple css fix.
input:focus{
outline : none
}
Voila! This would solve the blue outlining on focus issue of Safari.