It looks like your layout shifts or breaks when the SweetAlert (Swal) message appears. Here are some possible fixes:
Prevent Swal from Affecting Layout:
set " backdrop: false ".
Swal.fire({
title: "OTP Verified Successfully",
text: "You can now continue",
icon: "success",
backdrop: false // Prevents background effects
});
Set Fixed Width & Height for Layout Containers:
body{ min-height: 100vh; overflow: hidden; }