-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
120 lines (102 loc) · 1.95 KB
/
Copy pathsignup.css
File metadata and controls
120 lines (102 loc) · 1.95 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@font-face {
font-family: Gilroy-SB;
src: url("Gilroy-SemiBold.otf") format("opentype");
}
@font-face {
font-family: Gilroy-M;
src: url("Gilroy-Medium.otf") format("opentype");
}
@font-face {
font-family: Gilroy-R;
src: url("Gilroy-Regular.otf") format("opentype");
}
@font-face {
font-family: Void;
src: url("VoidSemiBold.woff") format("woff");
}
:root {
--main-bg: #fff;
--line: #d1d1d1;
--nav-link-active: #ffebf2;
--nav-link-hover: #FAF4F6;
--nav-link-icon: #555555;
--text: #212121;
--main-red: #F92B67;
--hover-red: #e12b5f;
--second-text: #a0a0a0;
}
* {
padding: 0;
margin: 0;
font-family: Gilroy-SemiBold;
box-sizing: border-box;
}
.main-container {
background-color: var(--main-bg);
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.logo {
width: 215px;
margin-bottom: 24px;
}
.login-container {
display: flex;
flex-direction: column;
align-items: center;
width: 360px;
}
h1 {
font-size: 30px;
margin-bottom: 12px;
}
h2 {
font-family: Gilroy-Regular;
font-size: 16px;
color: var(--second-text);
}
form {
margin: 32px 0px;
display: flex;
flex-direction: column;
width: 100%;
}
label {
margin-bottom: 6px;
}
input {
margin-bottom: 24px;
border-radius: 8px;
height: 45px;
border: 1px solid var(--second-text);
padding: 0px 14px;
font-size: 16px;
color: var(--second-text);
font-family: Gilroy-Regular;
}
button {
border-radius: 8px;
height: 45px;
border: none;
background-color: var(--main-red);
color: var(--main-bg);
transition: 0.25s ease;
cursor: pointer;
}
button:hover {
background-color: var(--hover-red);
}
.create-account {
display: flex;
column-gap: 5px;
}
.create-account p {
font-family: Gilroy-Regular;
}
a {
text-decoration: none;
color: var(--main-red);
}