1+ import React from "react" ;
2+ import styled from "styled-components" ;
3+
4+ function PasswordFindDe ( ) {
5+ const Style = {
6+ Wrapper :styled . div `
7+ box-sizing: border-box;
8+ position: absolute;
9+ width: 906px;
10+ height: 381px;
11+ top: 248px;
12+ background: #FFFFFF;
13+ border: 1px solid #D0D0D0;
14+ box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
15+ border-radius: 30px;
16+ ` ,
17+ Title :styled . div `
18+ position: absolute;
19+ width: 664px;
20+ height: 64px;
21+ top: 154px;
22+ font-family: 'Noto Sans KR';
23+ font-style: normal;
24+ font-weight: 700;
25+ font-size: 40px;
26+ line-height: 58px;
27+ text-align: center;
28+ color: #464646;
29+ ` ,
30+ FormStyle :styled . div `
31+ display: flex;
32+ justify-content:center;
33+ ` ,
34+ Question :styled . div `
35+ display: flex;
36+ justify-content: center;
37+ width:633px;
38+ height:43px;
39+ position: relative;
40+ margin-bottom: 22px;
41+ left:145px;
42+ top:95px;
43+ ` ,
44+ Answer :styled . input `
45+ position: absolute;
46+ width: 547px;
47+ height: 43px;
48+ background: #FFFFFF;
49+ border: 1px solid #B0B0B0;
50+ box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
51+ border-radius: 10px;
52+ display: flex;
53+ justify-content: right;
54+ right:0px;
55+ padding-left: 20px;
56+ ::placeholder {
57+ font-family: 'Inter';
58+ font-style: normal;
59+ font-weight: 400;
60+ font-size: 15px;
61+ line-height: 18px;
62+ text-align: center;
63+ color: #B0B0B0;
64+ }
65+ ` ,
66+ InputName :styled . div `
67+ position: absolute;
68+ font-family: 'Noto Sans KR';
69+ font-size: 20px;
70+ line-height: 29px;
71+ width: 60px;
72+ height: 32px;
73+ left: 0px;
74+ text-align: right;
75+ ` ,
76+ PasswordButton :styled . button `
77+ box-sizing: border-box;
78+ position: absolute;
79+ width: 906px;
80+ height: 68px;
81+ top: 657px;
82+ background: #FADA5E;
83+ border: 1px solid #D0D0D0;
84+ box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
85+ border-radius: 30px;
86+ color:white;
87+ ` ,
88+ }
89+ return (
90+ < >
91+ < Style . Title > 비밀번호 찾기</ Style . Title >
92+ < Style . FormStyle >
93+ < Style . Wrapper >
94+ < Style . Question >
95+ < Style . InputName > 이메일</ Style . InputName >
96+ < Style . Answer placeholder = "이메일을 입력해주세요" />
97+ </ Style . Question >
98+ < Style . Question >
99+ < Style . InputName > 이름</ Style . InputName >
100+ < Style . Answer placeholder = "성함을 입력해주세요" />
101+ </ Style . Question >
102+ < Style . Question >
103+ < Style . InputName > 연락처</ Style . InputName >
104+ < Style . Answer placeholder = "전화번호를 입력해주세요" />
105+ </ Style . Question >
106+ </ Style . Wrapper >
107+ < Style . PasswordButton > 비밀번호 찾기</ Style . PasswordButton >
108+ </ Style . FormStyle >
109+ </ >
110+ )
111+ }
112+ export default PasswordFindDe ;
0 commit comments