-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
99 lines (95 loc) · 1.61 KB
/
index.css
File metadata and controls
99 lines (95 loc) · 1.61 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
* {
margin: 0;
padding: 0;
}
body {
width: 100vw;
height: 100vh;
background-color: #1c1c1c;
display: flex;
justify-content: center;
align-self: center;
}
.container {
position: relative;
width: 50%;
/* height: 70%; */
margin: auto;
padding-left: 50px;
padding-right: 50px;
padding-top: 105px;
padding-bottom: 105px;
background: #1f2937;
}
.text {
margin-bottom: 5px;
font-family: sans-serif;
font-style: normal;
font-weight: 800;
line-height: 35px;
/* background-color: red; */
color: #10b981;
}
span {
color: white;
}
.sub-text {
color: #d5d4d8;
/* text-xl/leading-7/font-normal */
font-family: sans-serif;
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 28px;
}
.btn {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
button {
cursor: pointer;
margin-top: 60px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 9px 17px 9px 15px;
gap: 12px;
background: #10b981;
/* shadow/sm */
color: #ffffff;
border: none;
/* box-shadow: 5px 1px 2px rgba(0, 0, 0, 0.05); */
border-radius: 6px;
}
.line {
margin-top: 5%;
height: 2px;
width: 100%;
background-color: #273549;
}
.pwd {
display: flex;
flex-wrap: wrap;
gap: 2rem;
margin-top: 5%;
}
.password {
width: 211px;
height: 39px;
text-align: center;
color: #55f991;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background: #273549;
border-radius: 6px;
}
input {
border: solid #273549 2px;
border-radius: 4px;
max-width: 50px;
margin-left: 40px;
}