-
Notifications
You must be signed in to change notification settings - Fork 2
/
style2.css
120 lines (104 loc) · 2.02 KB
/
style2.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
119
120
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
.wrapper {
position: relative;
max-width: 730px;
width: 100%;
background: #fff;
padding: 34px;
border-radius: 6px;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.wrapper h2 {
text-align: left;
position: relative;
font-size: 22px;
font-weight: 600;
color: #333;
}
.wrapper h2::before {
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 28px;
border-radius: 12px;
background: #D10024;
}
.wrapper form {
margin-top: 30px;
}
.wrapper form .input-box {
height: 52px;
margin: 18px 0;
}
form .input-box input {
height: 100%;
width: 100%;
outline: none;
padding: 0 15px;
font-size: 17px;
font-weight: 400;
color: #333;
border: 1.5px solid #C7BEBE;
border-bottom-width: 2.5px;
border-radius: 6px;
transition: all 0.3s ease;
}
.input-box input:focus,
.input-box input:valid {
border-color: #C7BEBE
}
form .policy {
display: flex;
align-items: center;
}
form h3 {
color: #707070;
font-size: 14px;
font-weight: 500;
margin-left: 10px;
}
.input-box.button input {
color: #fff;
letter-spacing: 1px;
border: none;
background: #D10024;
cursor: pointer;
}
.input-box.button input:hover {
background: #D10024;
}
form .text h3 {
color: #333;
width: 100%;
text-align: center;
}
form .text h3 a {
color: #D10024;
text-decoration: none;
}
form .text h3 a:hover {
text-decoration: underline;
}
input[type=file]::file-selector-button {
margin-right: ;
border: none;
margin-top: 5px;
margin-left: 1px;
margin-bottom: 5px;
background: #D10024;
padding: 10px 20px;
border-radius: 10px;
color: #fff;
cursor: pointer;
transition: background .2s ease-in-out;
}
input[type=file]::file-selector-button:hover {
background: #D10024;
}