diff --git a/components/ui/Modal/Modal.module.css b/components/ui/Modal/Modal.module.css
index 38f20261e..fa6b95e81 100644
--- a/components/ui/Modal/Modal.module.css
+++ b/components/ui/Modal/Modal.module.css
@@ -6,3 +6,7 @@
.modal {
@apply bg-primary p-12 border border-accents-2;
}
+
+.modal:focus {
+ @apply outline-none;
+}
diff --git a/pages/forgot-password.tsx b/pages/forgot-password.tsx
index 23e18d2ba..d5139b273 100644
--- a/pages/forgot-password.tsx
+++ b/pages/forgot-password.tsx
@@ -1,12 +1,32 @@
import { Layout } from '@components/core'
-import { Container } from '@components/ui'
-
+import { Logo, Modal, Button } from '@components/ui'
export default function ForgotPassword() {
return (
- Forgot Password
-
-