blob: b2bcddfec87ff3aee451a95ec7a90e39ac17d87e (
plain)
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
|
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #2c3338;
}
#container {
font-size: 17px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
#loginText,
#signupText {
color: #ccc;
font-size: 30px;
font-weight: 600;
border: 2px solid #606468;
padding: 10px;
border-radius: 5px;
margin: 0 auto;
}
input {
display: block;
margin: 10px auto;
width: 300px;
border-radius: 5px;
padding: 15px;
color: #ccc;
background-color: #3b4148;
border: none;
font-size: 17px;
}
button {
display: block;
margin: 10px auto;
width: 100%;
border-radius: 5px;
padding: 15px;
color: #ccc;
background-color: #415eac;
border: none;
font-size: 17px;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.3s ease;
}
button:hover {
background-color: #2e4781;
}
button:active {
transform: scale(0.95);
}
#error {
color: #ee6161;
}
.link {
text-decoration: underline;
color: #ccc;
}
.link:hover {
text-decoration: none;
color: #415eac;
}
#bottomText {
color: #606468;
}
.visible {
visibility: visible;
}
.hidden {
visibility: hidden;
}
|