Index: src/index.php
===================================================================
--- src/index.php	(revision 45889)
+++ src/index.php	(working copy)
@@ -30,7 +30,10 @@
 wp_load_translations_early();
 
 // Die with an error message
-$die = __( 'You are running WordPress without JavaScript and CSS files. These need to be built.' ) . '</p>';
+$die = sprintf(
+	'<p>%s</p>',
+	__( 'You are running WordPress without JavaScript and CSS files. These need to be built.' )
+);
 
 $die .= '<p>' . sprintf(
 	/* translators: %s: npm install */
Index: src/wp-admin/css/common.css
===================================================================
--- src/wp-admin/css/common.css	(revision 45889)
+++ src/wp-admin/css/common.css	(working copy)
@@ -460,6 +460,12 @@
 	white-space: nowrap;
 }
 
+.wp-die-message {
+	font-size: 13px;
+	line-height: 1.5;
+	margin: 1em 0;
+}
+
 /* .widefat - main style for tables */
 .widefat {
 	border-spacing: 0;
Index: src/wp-includes/functions.php
===================================================================
--- src/wp-includes/functions.php	(revision 45889)
+++ src/wp-includes/functions.php	(working copy)
@@ -3149,9 +3149,12 @@
 				wp_list_pluck( $parsed_args['additional_errors'], 'message' )
 			);
 			$message = "<ul>\n\t\t<li>" . join( "</li>\n\t\t<li>", $message ) . "</li>\n\t</ul>";
-		} else {
-			$message = "<p>$message</p>";
 		}
+
+		$message = sprintf(
+			'<div class="wp-die-message">%s</div>',
+			$message
+		);
 	}
 
 	$have_gettext = function_exists( '__' );
@@ -3221,7 +3224,8 @@
 		#error-page {
 			margin-top: 50px;
 		}
-		#error-page p {
+		#error-page p,
+		#error-page .wp-die-message {
 			font-size: 14px;
 			line-height: 1.5;
 			margin: 25px 0 20px;
