diff --git a/core/includes/theme.maintenance.inc b/core/includes/theme.maintenance.inc
index 8a19a49..c53b0de 100644
--- a/core/includes/theme.maintenance.inc
+++ b/core/includes/theme.maintenance.inc
@@ -155,7 +155,7 @@ function theme_authorize_report($variables) {
   $messages = $variables['messages'];
   $output = '';
   if (!empty($messages)) {
-    $output .= '<div id="authorize-results">';
+    $variables['attributes']['class'] = 'authorize-results';
     foreach ($messages as $heading => $logs) {
       $items = array();
       foreach ($logs as $number => $log_message) {
@@ -176,7 +176,6 @@ function theme_authorize_report($variables) {
       );
       $output .= drupal_render($item_list);
     }
-    $output .= '</div>';
   }
   return $output;
 }
@@ -198,7 +197,7 @@ function theme_authorize_message($variables) {
     $item = array('data' => $message, 'class' => array('success'));
   }
   else {
-    $item = array('data' => '<strong>' . $message . '</strong>', 'class' => array('failure'));
+    $item = array('data' => $message, 'class' => array('failure'));
   }
   return $item;
 }
diff --git a/core/modules/system/css/system.maintenance.css b/core/modules/system/css/system.maintenance.css
index 9fd9f38..65a1e12 100644
--- a/core/modules/system/css/system.maintenance.css
+++ b/core/modules/system/css/system.maintenance.css
@@ -43,3 +43,10 @@
 #edit-connection-settings-change-connection-type {
   margin: 2.6em 0.5em 0 1em;
 }
+
+/**
+ * Theme maintenance styles
+ */
+.failure {
+  font-weight: bold;
+}
\ No newline at end of file
