aboutsummaryrefslogtreecommitdiff
path: root/app/src/styles/Auth.module.css
blob: bd8059c9c861436e0f34fdccb739ab6e2cdf7822 (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;
  width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

h1 {
  color: #ccc;
  font-weight: 600;
  border: 2px solid #606468;
  padding: 10px;
  border-radius: 5px;
  margin: 0 auto;
}

.authInput {
  display: block;
  margin: 10px auto;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 15px;
  font-size: 17px;
  color: #ccc;
  background-color: #3b4148;
  border: none;
}

button {
  display: block;
  margin: 10px auto;
  width: 100%;
  border-radius: 5px;
  padding: 15px;
  font-size: 17px;
  color: #ccc;
  background-color: #415eac;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.3s ease;
}

button:hover {
  background-color: #2e4781;
}

button:active {
  transform: scale(0.95);
}

.errorVisible {
  visibility: visible;
  color: #ee6161;
  font-weight: 600;
  word-wrap: break-word;
  width: 100%;
}

.errorHidden {
  visibility: hidden;
  color: #ee6161;
}

.footnoteLink {
  text-decoration: underline;
  color: #ccc;
}

.footnoteLink:hover {
  text-decoration: none;
  color: #415eac;
}

.footnote {
  color: #606468;
}