-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
153 lines (128 loc) · 3.65 KB
/
index.html
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Poppins:wght@900&display=swap');
body {
display: grid;
height: 100vh;
margin: 0;
place-items: center;
background: linear-gradient(to right, #12c2e9, #c471ed, #f64f59);
}
.wrapper {
position: relative;
}
.circle {
position: absolute;
height: 150px;
width: 150px;
background: black;
border-radius: 50%;
}
.circle1 {
background: #12c2e9;
right: -60px;
top: -60px;
animation: circle1 5s ease-in-out alternate infinite;
}
@keyframes circle1 {
100% {
top: 60px;
}
}
.circle2 {
background: #f64f59;
bottom: -60px;
left: -60px;
animation: circle2 10s ease-in-out alternate infinite;
}
@keyframes circle2 {
100% {
bottom: 60px;
}
}
.form {
position: relative;
width: 400px;
height: 400px;
display: grid;
place-content: center;
background: rgba(255, 255, 255, 0.1);
border-top: 1px solid rgba(255, 255, 255, 0.5);
border-left: 1px solid rgba(255, 255, 255, 0.3);
border-right: 1px solid rgba(255, 255, 255, 0.3);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
backdrop-filter: blur(12px);
box-shadow: 0 26px 42px rgba(0, 0, 0, 0.1);
font-family: 'Montserrat', sans-serif;
}
h1 {
font-family: 'Poppins', sans-serif;
color: white;
letter-spacing: 2px;
margin-top: 0;
}
input,
button {
font-size: 16px;
display: block;
box-sizing: border-box;
width: 100%;
margin: 20px auto;
padding: 12px 20px;
border: none;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
border-top: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 13px 21px rgba(0, 0, 0, 0.05);
}
input:focus {
outline: none;
}
input::placeholder {
color: white;
}
button {
cursor: pointer;
background: #f64f59;
color: white;
transition: 0.5s;
}
button:hover {
background: #12c2e9;
}
.forgot-signup {
display: flex;
justify-content: space-between;
;
}
a {
color: white;
text-decoration: none;
font-size: 16px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="circle circle1"></div>
<div class="circle circle2"></div>
<div class="form">
<h1>FloatLifeStudio</h1>
<form>
<input type="text" placeholder="[email protected]" />
<input type="password" placeholder="Must have atleast 6 characters" />
<button type="submit">Login</button>
<div class="forgot-signup">
<a href="#">Forgot password?</a>
<a href="#">Sign Up</a>
</div>
</form>
</div>
</div>
</body>
</html>