-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (71 loc) · 1.22 KB
/
styles.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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
}
body {
width: 100%;
min-height: 100vh;
background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
display: flex;
justify-content: center;
align-items: center;
}
.container {
background-color: #fafafa;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
width: 400px;
max-width: 100%;
overflow: hidden;
}
.header {
background-color: #eee;
padding: 20px;
}
.form {
padding: 20px;
}
.form-control {
margin-bottom: 10px;
padding-bottom: 20px;
position: relative;
}
.form-control label {
display: inline-block;
margin-bottom: 5px;
}
.form-control input {
border: 2px solid #f0f0f0;
display: block;
border-radius: 10px;
font-size: 14px;
width: 100%;
padding: 10px;
}
.form-control i {
position: absolute;
top: 45px;
right: 10px;
visibility: hidden;
}
.form-control small {
position: absolute;
bottom: 0;
left: 0;
visibility: hidden;
}
.form button {
background-color: #fc00ff;
border: 2px solid #fc00ff;
color: #fff;
font-size: 14px;
width: 100%;
border-radius: 10px;
padding: 10px;
}
.form button:hover {
background-color: #c505c9;
color: #f0f0f0;
}