--- a/src/wp-includes/pluggable.php
+++ b/src/wp-includes/pluggable.php
@@ -2145,8 +2145,14 @@
 		 * @param int $lifespan Lifespan of nonces in seconds. Default 86,400 seconds, or one day.
 		 */
 		$nonce_life = apply_filters( 'nonce_life', DAY_IN_SECONDS );
+		$time = time();
 
-		return ceil( time() / ( $nonce_life / 2 ) );
+		try {
+			$time += ( new DateTime( "@$time" ) )->setTimezone( wp_timezone() )->getOffset() + 1;
+		} catch ( Exception $e ) {
+		}
+
+		return ceil( $time / ( $nonce_life / 2 ) );
 	}
 endif;
 
