File size: 1,858 Bytes
a566fb0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.loginOverlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 9999;
  background: radial-gradient(900px 500px at 20% 20%, rgba(59,130,246,.22), transparent 60%),
              radial-gradient(900px 500px at 80% 80%, rgba(168,85,247,.22), transparent 60%),
              linear-gradient(135deg, #0f172a, #2e1065, #0f172a);
}

.loginCard {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15,23,42,.75), rgba(15,23,42,.45));
  border: 1px solid #ffffff1a;
  box-shadow: 0 25px 60px rgba(0,0,0,.45);
  color: #e5e7eb;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.loginOverlay input {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(2,6,23,.55);
  color: #e5e7eb;
  font-size: 16px;
  outline: none;
}

.loginOverlay button {
  border: 0;
  border-radius: 16px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  background: linear-gradient(90deg, rgba(59,130,246,1), rgba(168,85,247,1));
}

.loginRow { display: flex; gap: 12px; margin-top: 16px; align-items: center; }
.loginTip { font-size: 13px; color: #cbd5e180; }
.loginSubtitle { color: #cbd5e180; margin: 0 0 18px; }
.loginTitle { margin: 0 0 8px; font-size: 28px; }
.loginLabel { display: block; margin-bottom: 8px; }

.approvedToast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #22d3ee;
  color: #0f172a;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: bold;

  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 10000;
}

.approvedToast.show {
  opacity: 1;
  transform: translateY(0);
}