1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77import styled from 'styled-components';
export const AppContainer = styled.div`
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
`;
export const AppTitle = styled.h1`
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 30px;
line-height: 13px;
color: #000;
`;
export const FormContainer = styled.form`
width: 600px;
height: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
`;
export const Input = styled.input`
width: 100%;
height: 42px;
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 14px;
line-height: 14px;
color: #4e4e4e;
background: white;
border: 2px solid #eff2f6;
box-sizing: border-box;
border-radius: 5px;
text-indent: 20px;
margin-top: 20px;
::placeholder {
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 13px;
line-height: 13px;
color: #000;
text-indent: 15px;
}
`;
export const ButtonsContainer = styled.div`
width: 100%;
height: auto;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-evenly;
margin-top: 20px;
`;
export const Button = styled.button`
width: 150px;
height: 42px;
border-radius: 5px;
border: none;
font-size: 14px;
font-weight: 500;
color: #fff;
background-color: #fe0000;
cursor: pointer;
`;