diff --git a/src/components/common/SocialSigner/index.tsx b/src/components/common/SocialSigner/index.tsx
index 503327fd49..ac30d1e5ca 100644
--- a/src/components/common/SocialSigner/index.tsx
+++ b/src/components/common/SocialSigner/index.tsx
@@ -1,4 +1,4 @@
-import { Box, Button, SvgIcon, Tooltip, Typography } from '@mui/material'
+import { Box, Button, LinearProgress, SvgIcon, Tooltip, Typography } from '@mui/material'
import { useCallback, useContext, useMemo, useState } from 'react'
import { PasswordRecovery } from '@/components/common/SocialSigner/PasswordRecovery'
import GoogleLogo from '@/public/images/welcome/logo-google.svg'
@@ -118,6 +118,13 @@ export const SocialSigner = ({
disabled={isDisabled}
fullWidth
>
+
+
Continue with Google
diff --git a/src/components/common/SocialSigner/styles.module.css b/src/components/common/SocialSigner/styles.module.css
index 92c29890de..2b81df624a 100644
--- a/src/components/common/SocialSigner/styles.module.css
+++ b/src/components/common/SocialSigner/styles.module.css
@@ -10,6 +10,16 @@
align-items: flex-start;
}
+.loginProgress {
+ margin-bottom: -16px;
+ top: 0;
+ width: 100%;
+ height: 2px;
+ position: absolute;
+ border-top-left-radius: 6px;
+ border-top-right-radius: 6px;
+}
+
.passwordWrapper {
padding: var(--space-4) var(--space-4) var(--space-2) var(--space-4);
display: flex;