-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.css
More file actions
110 lines (96 loc) · 1.96 KB
/
signup.css
File metadata and controls
110 lines (96 loc) · 1.96 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
103
104
105
106
107
108
109
110
@import url('https://fonts.googleapis.com/css2?family:Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(135deg, skyblue, #00549e);
background-size: cover;
background-position: center;
}
.wrapper {
position: relative;
left: -10%;
display: flex;
justify-content: center;
align-items: center;
width: 400px;
height: 500px;
box-shadow: 0 0 60px #000;
border-radius: 10px;
/* Remove the background color to make it fully transparent */
background: transparent;
}
h2 {
font-size: 2em;
color: skyblue;
text-align: center;
}
.input-group {
position: relative;
width: 320px;
margin: 30px 0;
}
.input-group input {
width: 100%;
height: 40px;
font-size: 1em;
color: skyblue;
padding: 0 10px 0 35px;
background: rgba(255, 255, 255, 0.2);
border: 1px solid skyblue;
outline: none;
border-radius: 5px;
}
.input-group input::placeholder {
color: rgba(255, 255, 255, 0.3);
}
.input-group .icon {
position: absolute;
display: block;
left: 10px;
color: skyblue;
font-size: 1.2em;
line-height: 45px;
}
.btn {
position: relative;
width: 100%;
height: 40px;
background: #00549e;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
font-size: 1em;
color: #fff;
font-weight: 500;
cursor: pointer;
border-radius: 5px;
border: none;
outline: none;
transition: 0.5s;
}
.btn:hover {
background: blue;
color: #fff;
}
.sign-link {
font-size: 0.9em;
text-align: center;
margin: 25px 0;
}
.sign-link p {
color: skyblue;
}
.sign-link p a {
color: #00549e;
text-decoration: none;
font-weight: 600;
}
.sign-link p a:hover {
text-decoration: underline;
}