-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (91 loc) · 1.53 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
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
margin: 0;
}
body {
font-family: Poppins;
background-color: #080710;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
input,
button {
font-family: inherit;
border: none;
outline: none;
}
.wrapper {
width: 400px;
position: relative;
}
.shape {
width: 200px;
height: 200px;
border-radius: 100%;
position: absolute;
z-index: -1;
}
.shape--one {
background: linear-gradient(45deg, #0d47a1, #42a5f5);
top: -80px;
left: -80px;
}
.shape--two {
background: linear-gradient(45deg, #ff6f00, #ffa726);
bottom: -90px;
right: -70px;
}
.form {
width: 100%;
height: 100%;
background-color: rgb(255, 255, 255, 0.13);
color: white;
padding: 50px 35px 35px;
border: 2px solid rgb(255, 255, 255, 0.13);
border-radius: 10px;
box-shadow: 0 0 40px #00000050;
backdrop-filter: blur(10px);
}
.form__title {
font-size: 32px;
text-align: center;
margin-bottom: 30px;
}
.form__input-wrapper {
margin-bottom: 24px;
}
.form__label {
font-size: 16px;
}
.form__input {
font-size: 14px;
font-weight: 300;
display: block;
height: 50px;
width: 100%;
background-color: rgb(255, 255, 255, 0.07);
padding: 0 10px;
margin-top: 8px;
color: white;
border-radius: 4px;
}
.form__input::placeholder {
color: #e5e5e560;
}
.form__submit-btn {
background-color: white;
color: #080710;
border-radius: 4px;
text-align: center;
padding: 15px 0;
display: block;
width: 100%;
margin-top: 44px;
}