+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default index;
diff --git a/src/pages/NewPassword/styles.ts b/src/pages/NewPassword/styles.ts
new file mode 100644
index 0000000..07c5b90
--- /dev/null
+++ b/src/pages/NewPassword/styles.ts
@@ -0,0 +1,33 @@
+import styled from 'styled-components';
+
+export const StyledNewPassword = styled.div`
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+
+ margin-top: 4.375rem;
+
+ .NewPassword {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column;
+
+ margin-top: 13.25rem;
+
+ align-items: flex-end;
+
+ Input {
+ margin-bottom: 2rem;
+ }
+
+ Button {
+ margin-top: 4rem;
+ width: 14.063rem;
+ }
+ }
+
+`;
+
+export default StyledNewPassword;
diff --git a/src/pages/RecoveryPassword/index.tsx b/src/pages/RecoveryPassword/index.tsx
new file mode 100644
index 0000000..5d94d27
--- /dev/null
+++ b/src/pages/RecoveryPassword/index.tsx
@@ -0,0 +1,39 @@
+import React from 'react';
+
+import Button from 'components/Button/Button';
+import Input from 'components/Input/Input';
+
+import LogoIcon from 'assets/logo.svg';
+
+import StyledRecoveryPassword from './styles';
+
+const RecoveryPassword = () => {
+ return (
+ <>
+