I am trying to make a page in the admin section similar to the appearance of the Profile page for users

If I understand you correctly you want to create a page for your plugin which mimics the look and feel of the WordPress Dashboard and it’s option pages?

If so then you can use the CSS which is packed with WordPress. The CSS file is located at wp-admin/wp-admin.css

If you open that file with your code editor you can inspect some of the styling. Using this in conjunction with a code inspector like Firebug or Google Inspector you can check items you want to mimic by “inspecting” them and simply name your elements with the same style or ID that you wish to mimic for your plugin

Craig