-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (100 loc) · 2.24 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
border: none;
}
.container {
width: 100%;
height: 100vh;
background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
display: flex;
align-items: center;
justify-content: center;
}
.useful-links {
position: absolute;
top: 5%;
right: 5%;
}
.useful-links a {
display: block;
color: #fff;
text-decoration: none;
}
.container form {
width: 90%;
max-width: 500px;
padding: 50px 30px 20px;
background: #fff;
border-radius: 4px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
position: relative;
}
.input-group {
width: 100%;
display: flex;
align-items: center;
margin: 10px 0;
position: relative;
}
.input-group label {
flex-basis: 28%;
}
.input-group input,
.input-group textarea {
flex-basis: 68%;
background: transparent;
border: 0;
outline: 0;
padding: 10px 0;
border-bottom: 1px solid #999;
color: #333;
font-size: 16px;
}
::placeholder {
font-size: 14px;
}
form button {
background-image: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
color: #fff;
border-radius: 4px;
border: 1px solid rgba(255, 255, 255, 0.7);
padding: 10px 40px;
outline: 0;
cursor: pointer;
display: block;
margin: 30px auto 10px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.06rem;
}
form button:hover {
background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
}
.fa-paper-plane {
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
font-size: 26px;
padding: 20px;
border-radius: 50%;
box-shadow: rgba(240, 46, 170, 0.4) 0px 5px, rgba(240, 46, 170, 0.3) 0px 10px, rgba(240, 46, 170, 0.2) 0px 15px, rgba(240, 46, 170, 0.1) 0px 20px, rgba(240, 46, 170, 0.05) 0px 25px;
}
.input-group span {
position: absolute;
bottom: 12px;
right: 17px;
font-size: 12px;
color: red;
}
.input-group span i {
color: seagreen;
}
#submit-error {
color: red;
font-size: 12px;
}