-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
136 lines (120 loc) · 2.29 KB
/
style.css
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap");
* {
margin: 0;
padding: 0;
font-family: system-ui;
}
body {
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
background: url(img/bg.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
body:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.164);
}
.frame {
height: 600px;
width: 400px;
backdrop-filter: blur(5px);
border: 1px solid white;
display: flex;
flex-direction: column;
align-items: center;
border-radius: 20px;
box-shadow: 0px 0px 5px white;
}
.login {
font-size: 50px;
font-weight: bold;
color: white;
margin-top: 0.5rem;
margin-bottom: 2.5rem;
}
.email,
.password {
width: 90%;
height: auto;
display: flex;
align-items: center;
margin: 0.5rem;
position: relative;
}
.email input,
.password input {
padding: 8px 8px 8px 15px;
background: transparent;
border: none;
width: 100%;
border: 1px solid #cecece;
border-radius: 50px;
font-size: 17px;
outline: none;
font-weight: bold;
}
.email input::placeholder,
.password input::placeholder {
color: white;
font-weight: bold;
}
.email img,
.password img {
position: absolute;
right: 0.7rem;
}
.remember_forgot {
height: auto;
width: 90%;
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 0.5rem;
}
.remember_forgot .remember {
height: auto;
width: auto;
display: flex;
align-items: center;
font-size: 17px;
color: white;
font-weight: bold;
}
.remember_forgot .remember input {
height: 15px;
width: 15px;
margin-right: 0.2rem;
}
.remember_forgot .forgot a {
font-size: 17px;
text-decoration: none;
color: white;
font-weight: bold;
}
.log {
width: 90%;
padding: 10px;
margin-top: 1rem;
font-size: 25px;
font-weight: bold;
outline: none;
border: none;
border-radius: 50px;
cursor: pointer;
}
.reg {
margin-top: 1.5rem;
color: white;
}
.reg a {
font-weight: bold;
color: white;
}