diff --git a/src/app/login/page.module.scss b/src/app/login/page.module.scss index 3805c2c..8d8dae4 100644 --- a/src/app/login/page.module.scss +++ b/src/app/login/page.module.scss @@ -1,36 +1,24 @@ -.login_page { - width: 100%; + +@import '../../lib/styles/_palette.scss'; + +.main { height: 100vh; + padding: 100px 50px; display: flex; flex-direction: column; align-items: center; + justify-content: space-between; +} + +.inputs{ + margin: auto; + text-align: center; + input{ + margin: 5px; } - - .auth_title{ - - } - - .login_page h1 { - margin-top: 20px; - margin-bottom: 20px; - color: #4BBD5D; - } - - .login_space{ - - } - - .login_button{ - display: flex; - bottom: 60px; - width: 80%; - height: 50px; - /* fill: #4BBD5D; */ - /* font: ; */ - color: #fff; - background: #4BBD5D; - border-radius: 12px; - justify-content: center; - align-items: center; - position: absolute; - } \ No newline at end of file +} + +.button{ + background-color: $light-gray-color; + width: 100%; +} \ No newline at end of file diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 210e89f..6006896 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -4,7 +4,7 @@ import { FormEvent, use } from "react"; import { useRouter } from "next/navigation"; import styles from "./page.module.scss"; import { login } from "@/lib/firebase/api/authAPI"; - +import Logo from "../_common/Logo"; export default function LoginPage() { const router = useRouter(); @@ -18,9 +18,9 @@ export default function LoginPage() { }; return ( -