-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.css
85 lines (73 loc) · 1.24 KB
/
form.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
body {
font-family: Arial, sans-serif;
background-color: #04151d;
color: #fefefc;
margin: 0;
padding: 0;
}
.container {
max-width: 600px;
margin: 50px auto;
background-color: #04151d;
padding: 20px;
border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
}
h1 {
text-align: center;
color: #fefefc;
}
form {
margin-top: 20px;
}
label {
display: block;
margin-bottom: 8px;
color: #fefefc;
}
input,
select {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #fefefc;
box-sizing: border-box;
background-color: #04151d;
color: #fefefc;
}
input[type="submit"] {
background-color: #04151d;
color: #fefefc;
cursor: pointer;
transition: all 0.1s;
}
input[type="submit"]:hover {
background-color: #0c443b;
transform: translateY(-3px);
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
text-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.help-block {
margin-top: -10px;
margin-bottom: 15px;
color: #fefefc;
}
.line {
display: flex;
flex-wrap: wrap;
gap: 2px;
}
.line * {
flex-grow: 1;
}
.logo {
text-align: center;
margin-bottom: 20px;
}
.logo img {
max-width: 100%;
height: auto;
height: 80px;
margin-bottom: 20px;
}