Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
RishiRecon
GitHub Repository: RishiRecon/exploits
Path: blob/main/css/test.css
27877 views
1
* {
2
padding: 0;
3
margin: 0;
4
box-sizing: border-box;
5
font-family: 'Poppins', sans-serif;
6
}
7
8
body {
9
height: 100vh;
10
width: 100%;
11
background-image: url(/img/bg.png);
12
background-size: cover;
13
background-position: center;
14
display: flex;
15
align-items: center;
16
justify-content: center;
17
padding: 0 10%;
18
}
19
20
.container {
21
width: 100%;
22
max-width: 470px;
23
padding: 30px 20px;
24
background: rgba(10, 10, 10, .45);
25
border: 2px solid #3a1b22;
26
border-radius: 16px;
27
}
28
29
.container h1 {
30
text-align: center;
31
color: #fff;
32
font-size: 2.5rem;
33
font-weight: 600;
34
padding: 0 0 8px 0;
35
}
36
37
.container form {
38
padding: 0 50px;
39
}
40
41
form .main {
42
position: relative;
43
margin: 30px 0;
44
border-bottom: 2px solid #3a1b22;
45
}
46
47
.main input {
48
width: 100%;
49
padding: 0 5px;
50
font-size: 1rem;
51
height: 40px;
52
border: none;
53
outline: none;
54
background: none;
55
color: #e7e6e6;
56
}
57
58
.main label {
59
position: absolute;
60
top: 50%;
61
left: 6px;
62
color: #b2405d;
63
transform: translateY(-50%);
64
font-size: 1.1rem;
65
pointer-events: none;
66
transition: all .40s ease;
67
}
68
69
.main span::before {
70
position: absolute;
71
content: '';
72
left: 0;
73
top: 35px;
74
width: 100%;
75
height: 2px;
76
}
77
78
.main input:focus~label,
79
.main input:valid~label {
80
top: -3px;
81
color: #fff;
82
}
83
84
.pass {
85
margin: -6px 0 20px 5px;
86
color: #fff;
87
cursor: pointer;
88
}
89
90
.pass:hover {
91
text-decoration: underline;
92
}
93
94
input[type="submit"] {
95
height: 45px;
96
width: 100%;
97
border: none;
98
background: #b2405d;
99
color: #fff;
100
font-size: 1.1rem;
101
border-radius: 16px;
102
cursor: pointer;
103
}
104
105
.signup {
106
color: #b2405d;
107
font-size: 1rem;
108
text-align: center;
109
margin: 30px 0;
110
cursor: pointer;
111
}
112
113
.signup a {
114
margin-left: 10px;
115
text-decoration: none;
116
}
117
118
.signup a:hover {
119
text-decoration: underline;
120
}
121
122
@media (max-width: 525px) {
123
body {
124
padding: 0 2%;
125
}
126
127
.container {
128
padding: 10px 5px;
129
}
130
}
131