-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (91 loc) · 1.77 KB
/
styles.css
File metadata and controls
102 lines (91 loc) · 1.77 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
background: url('crp.jpg') no-repeat center center/cover;
color: #fff;
}
h1 {
margin-top: 20px;
font-size: 36px;
text-align: center;
background: rgba(0, 0, 0, 0.5);
padding: 10px 20px;
border-radius: 10px;
}
.wrapper {
width: 400px;
margin-top: 50px;
background: rgba(255, 255, 255, 0.15);
border: 2px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
border-radius: 12px;
padding: 30px 40px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.wrapper h1 {
font-size: 28px;
margin-bottom: 20px;
color: #fff;
}
.input-box {
position: relative;
width: 100%;
height: 50px;
margin: 20px 0;
}
.input-box input {
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.8);
border: none;
outline: none;
border-radius: 40px;
font-size: 16px;
color: #333;
padding: 0 20px;
padding-left: 50px;
}
.input-box input::placeholder {
color: #666;
}
.input-box i {
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
font-size: 20px;
color: #666;
}
.remember-forgot {
display: flex;
justify-content: space-between;
font-size: 14px;
margin: 10px 0;
color:#0f0f0f
}
.btn {
width: 100%;
height: 45px;
background: #6c63ff;
border: none;
outline: none;
border-radius: 40px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
cursor: pointer;
font-size: 16px;
color: #fff;
font-weight: bold;
transition: background 0.3s ease;
}
.btn:hover {
background: #5750d7;
}