Yes , You may need to override the class on of your theme file qa-theme.php. that is you need to crack the style of class qa-part-form-profile
example code is shown below
//some custom styles for my account page
function head_custom() {
if ($this->request == "account") {
$this->output('<style>.qa-part-form-profile .qa-form-wide-table {background: #E7F5F2;width: 730px;padding-bottom: 5px;</style>');
}
}