diff --git a/web/src/lib/components/layouts/AuthPageLayout.svelte b/web/src/lib/components/layouts/AuthPageLayout.svelte
index 78ff67cfcb..c6ccec0f51 100644
--- a/web/src/lib/components/layouts/AuthPageLayout.svelte
+++ b/web/src/lib/components/layouts/AuthPageLayout.svelte
@@ -18,8 +18,11 @@
         <Heading size="large" class="font-semibold" color="primary">{title}</Heading>
       </VStack>
     </CardHeader>
-    <CardBody>
-      {@render children?.()}
-    </CardBody>
+
+    <div class="pb-4">
+      <CardBody>
+        {@render children?.()}
+      </CardBody>
+    </div>
   </Card>
 </section>