mbkauthe 4.7.0 → 4.7.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/public/main.css CHANGED
@@ -12,6 +12,18 @@
12
12
  --success: #43e97b;
13
13
  --warning: #ffd166;
14
14
  --danger: #ff7675;
15
+ --surface-1: #0a1414;
16
+ --surface-2: #101c1c;
17
+ --surface-soft: rgba(255, 255, 255, 0.05);
18
+ --surface-muted: rgba(0, 0, 0, 0.25);
19
+ --glass-bg: rgba(10, 20, 20, 0.95);
20
+ --glass-border: rgba(0, 184, 148, 0.2);
21
+ --input-bg: rgba(0, 0, 0, .3);
22
+ --input-bg-focus: rgba(0, 0, 0, .4);
23
+ --input-border: rgba(0, 184, 148, 0.3);
24
+ --muted-border: rgba(255, 255, 255, 0.12);
25
+ --hero-from: #0a1414;
26
+ --hero-to: #1769aa;
15
27
  --border-radius: 8px;
16
28
  --box-shadow: 0 4px 10px rgba(33, 150, 243, 0.15);
17
29
  --transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
@@ -22,4 +34,939 @@
22
34
  --text-size-md: 1rem;
23
35
  --text-size-lg: 1.2rem;
24
36
  --text-size-xl: 2rem;
37
+ }
38
+
39
+ [data-theme="light"] {
40
+ --dark: #f8fbfd;
41
+ --darker: #eef6fb;
42
+ --light: #06222f;
43
+ --text: #163041;
44
+ --text-light: #4a6475;
45
+ --text-dark: #0e2230;
46
+ --warning: #a66900;
47
+ --surface-1: rgba(255, 255, 255, 0.9);
48
+ --surface-2: #f8fbfd;
49
+ --surface-soft: rgba(255, 255, 255, 0.88);
50
+ --surface-muted: rgba(6, 34, 47, 0.06);
51
+ --glass-bg: rgba(255, 255, 255, 0.88);
52
+ --glass-border: rgba(0, 184, 148, 0.22);
53
+ --input-bg: rgba(255, 255, 255, 0.84);
54
+ --input-bg-focus: rgba(255, 255, 255, 1);
55
+ --input-border: rgba(22, 48, 65, 0.2);
56
+ --muted-border: rgba(22, 48, 65, 0.14);
57
+ --hero-from: #d7e9f6;
58
+ --hero-to: #a7cde4;
59
+ --box-shadow: 0 10px 28px rgba(8, 35, 51, 0.12);
60
+ }
61
+
62
+ * {
63
+ margin: 0;
64
+ padding: 0;
65
+ box-sizing: border-box;
66
+ font-family: var(--font-sans);
67
+ }
68
+
69
+ body {
70
+ background: linear-gradient(180deg, var(--surface-2), var(--dark));
71
+ color: var(--text);
72
+ min-height: 100vh;
73
+ display: flex;
74
+ flex-direction: column;
75
+ overflow-x: hidden;
76
+ }
77
+
78
+ header {
79
+ background-color: var(--surface-1);
80
+ box-shadow: var(--box-shadow);
81
+ position: fixed;
82
+ width: 100%;
83
+ z-index: 1000;
84
+ transition: var(--transition);
85
+ border-bottom: .125rem solid var(--muted-border);
86
+ backdrop-filter: blur(8px);
87
+ }
88
+
89
+ .header-container {
90
+ display: flex;
91
+ justify-content: space-between;
92
+ align-items: center;
93
+ padding: 10px 1.5rem;
94
+ max-width: 1400px;
95
+ margin: 0 auto;
96
+ }
97
+
98
+ .logo {
99
+ display: flex;
100
+ align-items: center;
101
+ gap: .3rem;
102
+ text-decoration: none;
103
+ }
104
+
105
+ .logo svg,
106
+ .logo-image {
107
+ height: 40px;
108
+ width: auto;
109
+ }
110
+
111
+ .logo-text {
112
+ font-size: var(--text-size-xl);
113
+ font-weight: 700;
114
+ padding-top: 10px;
115
+ color: var(--light);
116
+ font-family: var(--font-display);
117
+ letter-spacing: 0.01em;
118
+ }
119
+
120
+ .logo-text span {
121
+ color: var(--accent);
122
+ }
123
+
124
+ .logo-comp {
125
+ margin-top: 20px;
126
+ font-size: var(--text-size-md);
127
+ font-weight: bold;
128
+ color: var(--text-light);
129
+ }
130
+
131
+ .login-container {
132
+ flex: 1;
133
+ display: flex;
134
+ align-items: center;
135
+ justify-content: center;
136
+ padding: 120px 1.7rem 20px;
137
+ position: relative;
138
+ overflow: hidden;
139
+ background: linear-gradient(135deg, var(--hero-from), var(--hero-to));
140
+ }
141
+
142
+ .login-container::before {
143
+ content: '';
144
+ position: absolute;
145
+ top: 0;
146
+ left: 0;
147
+ width: 100%;
148
+ height: 100%;
149
+ background: url(/mbkauthe/bg.webp) center/cover no-repeat;
150
+ opacity: .1;
151
+ z-index: 0;
152
+ }
153
+
154
+ [data-theme="light"] .login-container {
155
+ background:
156
+ radial-gradient(circle at 12% 18%, color-mix(in srgb, var(--primary) 18%, transparent 82%), transparent 48%),
157
+ radial-gradient(circle at 86% 78%, color-mix(in srgb, var(--accent) 14%, transparent 86%), transparent 54%),
158
+ linear-gradient(135deg, var(--hero-from), var(--hero-to));
159
+ }
160
+
161
+ .login-box {
162
+ background: var(--glass-bg);
163
+ backdrop-filter: blur(10px);
164
+ border-radius: var(--border-radius);
165
+ padding: 2.5rem;
166
+ width: 100%;
167
+ max-width: 450px;
168
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
169
+ border: 1px solid var(--glass-border);
170
+ position: relative;
171
+ z-index: 2;
172
+ transition: var(--transition);
173
+ }
174
+
175
+ .login-box:hover {
176
+ box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
177
+ border-color: rgba(0, 184, 148, 0.3);
178
+ }
179
+
180
+ /* Two-column layout structure (desktop only) */
181
+ .login-box-inner {
182
+ display: flex;
183
+ flex-direction: column;
184
+ gap: 0;
185
+ }
186
+
187
+ .login-sidebar {
188
+ display: none;
189
+ }
190
+
191
+ .login-main {
192
+ width: 100%;
193
+ }
194
+
195
+ .mobile-actions {
196
+ display: block;
197
+ }
198
+
199
+ .login-title {
200
+ text-align: center;
201
+ margin-bottom: 2rem;
202
+ font-size: var(--text-size-xl);
203
+ position: relative;
204
+ color: var(--light);
205
+ font-family: var(--font-display);
206
+ }
207
+
208
+ .login-title::after {
209
+ content: '';
210
+ position: absolute;
211
+ bottom: -10px;
212
+ left: 50%;
213
+ transform: translateX(-50%);
214
+ width: 80px;
215
+ height: 4px;
216
+ background-color: var(--accent);
217
+ border-radius: 2px;
218
+ }
219
+
220
+ .login-subtitle {
221
+ text-align: center;
222
+ color: var(--text-light);
223
+ font-size: var(--text-size-sm);
224
+ margin-top: -1rem;
225
+ margin-bottom: 2rem;
226
+ line-height: 1.5;
227
+ }
228
+
229
+ .form-group {
230
+ position: relative;
231
+ margin-bottom: 1.5rem;
232
+ }
233
+
234
+ .form-input {
235
+ width: 100%;
236
+ padding: 14px 20px;
237
+ background: var(--input-bg);
238
+ border: 2px solid var(--input-border);
239
+ border-radius: var(--border-radius);
240
+ color: var(--text);
241
+ font-size: var(--text-size-md);
242
+ transition: var(--transition);
243
+ }
244
+
245
+ .form-input:focus {
246
+ outline: none;
247
+ background: var(--input-bg-focus);
248
+ border-color: var(--accent);
249
+ box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.2);
250
+ }
251
+
252
+ .form-input[type="text"][name="token"] {
253
+ font-size: 1.5rem;
254
+ letter-spacing: 0.5rem;
255
+ text-align: center;
256
+ font-weight: 600;
257
+ font-family: var(--font-mono);
258
+ }
259
+
260
+ .form-label {
261
+ position: absolute;
262
+ top: 15px;
263
+ left: 20px;
264
+ color: var(--text-light);
265
+ transition: var(--transition);
266
+ pointer-events: none;
267
+ }
268
+
269
+ .form-input:focus+.form-label,
270
+ .form-input:not(:placeholder-shown)+.form-label {
271
+ top: -10px;
272
+ left: 15px;
273
+ font-size: 0.8rem;
274
+ background: var(--glass-bg);
275
+ padding: 0 5px;
276
+ color: var(--accent);
277
+ }
278
+
279
+ .input-icon {
280
+ position: absolute;
281
+ right: 20px;
282
+ top: 50%;
283
+ transform: translateY(-50%);
284
+ color: var(--text-light);
285
+ cursor: pointer;
286
+ transition: var(--transition);
287
+ }
288
+
289
+ .input-icon:hover {
290
+ color: var(--accent);
291
+ }
292
+
293
+ .btn-login {
294
+ width: 100%;
295
+ padding: 8px;
296
+ border-radius: var(--border-radius);
297
+ background: var(--accent);
298
+ color: var(--dark);
299
+ font-weight: 700;
300
+ font-size: var(--text-size-lg);
301
+ border: .1rem solid var(--accent);
302
+ cursor: pointer;
303
+ transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
304
+ box-shadow: var(--box-shadow);
305
+ }
306
+
307
+ .swi {
308
+ display: flex;
309
+ align-items: center;
310
+ justify-content: center;
311
+ gap: 10px;
312
+ padding: 0.85rem 1.1rem;
313
+ border-radius: var(--border-radius);
314
+ font-weight: 600;
315
+ font-size: var(--text-size-sm);
316
+ text-decoration: none;
317
+ transition: var(--transition);
318
+ border: 0.13rem solid;
319
+ position: relative;
320
+ z-index: 1;
321
+ overflow: hidden;
322
+ background: var(--surface-soft);
323
+ color: var(--text);
324
+ border-color: var(--muted-border);
325
+ }
326
+
327
+ .swi:hover {
328
+ background: transparent;
329
+ border-color: var(--accent);
330
+ box-shadow: 0 4px 20px rgba(0, 184, 148, 0.2);
331
+ }
332
+
333
+ .swi.s {
334
+ font-size: 1.3rem;
335
+ }
336
+
337
+ .btn-login:hover {
338
+ background: var(--surface-1);
339
+ color: var(--accent);
340
+ box-shadow: 0 6px 20px rgba(0, 184, 148, 0.3);
341
+ }
342
+
343
+ .btn-login:disabled {
344
+ background: var(--surface-1);
345
+ color: var(--accent);
346
+ cursor: not-allowed;
347
+ transform: none;
348
+ box-shadow: none;
349
+ }
350
+
351
+ .social-login {
352
+ margin-top: 1.5rem;
353
+ text-align: center;
354
+ }
355
+
356
+ .divider {
357
+ display: flex;
358
+ align-items: center;
359
+ justify-content: center;
360
+ margin: 0.5rem 0;
361
+ }
362
+
363
+ .divider::before,
364
+ .divider::after {
365
+ content: '';
366
+ flex: 1;
367
+ height: 1px;
368
+ background: var(--text-light);
369
+ opacity: 0.3;
370
+ }
371
+
372
+ .divider span {
373
+ background: var(--glass-bg);
374
+ padding: 0 15px;
375
+ color: var(--text-light);
376
+ font-size: 0.9rem;
377
+ }
378
+
379
+ #googleLoginBtn i {
380
+ font-size: 1.1rem;
381
+ color: #4285f4;
382
+ }
383
+
384
+ /* Social icons row for mobile */
385
+ .social-icons-row {
386
+ display: flex;
387
+ gap: 1rem;
388
+ justify-content: center;
389
+ align-items: center;
390
+ }
391
+
392
+ .mobile-google-btn i {
393
+ color: #4285f4;
394
+ }
395
+
396
+ .login-links {
397
+ display: flex;
398
+ justify-content: space-between;
399
+ margin-top: 1.5rem;
400
+ font-size: 0.9rem;
401
+ }
402
+
403
+ .login-link {
404
+ color: var(--text-light);
405
+ transition: var(--transition);
406
+ text-decoration: none;
407
+ }
408
+
409
+ .login-link:hover {
410
+ color: var(--accent);
411
+ }
412
+
413
+ .terms-info {
414
+ margin-top: 1rem;
415
+ font-size: 0.8rem;
416
+ color: var(--text-light);
417
+ text-align: center;
418
+ }
419
+
420
+ .terms-link {
421
+ color: var(--accent);
422
+ font-weight: 500;
423
+ text-decoration: none;
424
+ }
425
+
426
+ .token-container {
427
+ animation: fadeInUp 0.4s ease-out;
428
+ }
429
+
430
+ .token-container.disable {
431
+ display: none;
432
+ }
433
+
434
+ .token-container.enable {
435
+ display: block;
436
+ }
437
+
438
+ .ai-element {
439
+ position: absolute;
440
+ opacity: 0.1;
441
+ z-index: 1;
442
+ animation: float 6s ease-in-out infinite;
443
+ }
444
+
445
+ .ai-element:nth-child(1) {
446
+ top: 20%;
447
+ left: 10%;
448
+ font-size: 5rem;
449
+ animation-delay: 0s;
450
+ }
451
+
452
+ .ai-element:nth-child(2) {
453
+ top: 60%;
454
+ left: 80%;
455
+ font-size: 4rem;
456
+ animation-delay: 1s;
457
+ }
458
+
459
+ .ai-element:nth-child(3) {
460
+ top: 30%;
461
+ left: 70%;
462
+ font-size: 3rem;
463
+ animation-delay: 2s;
464
+ }
465
+
466
+ .ai-element:nth-child(4) {
467
+ top: 80%;
468
+ left: 20%;
469
+ font-size: 6rem;
470
+ animation-delay: 3s;
471
+ }
472
+
473
+ @keyframes float {
474
+
475
+ 0%,
476
+ 100% {
477
+ transform: translateY(0) rotate(0deg);
478
+ }
479
+
480
+ 50% {
481
+ transform: translateY(-20px) rotate(5deg);
482
+ }
483
+ }
484
+
485
+ @keyframes fadeInUp {
486
+ from {
487
+ opacity: 0;
488
+ transform: translateY(20px);
489
+ }
490
+
491
+ to {
492
+ opacity: 1;
493
+ transform: translateY(0);
494
+ }
495
+ }
496
+
497
+ .remember-me {
498
+ display: flex;
499
+ align-items: center;
500
+ justify-content: flex-start;
501
+ width: 100%;
502
+ }
503
+
504
+ .remember-me input[type="checkbox"] {
505
+ appearance: none;
506
+ -webkit-appearance: none;
507
+ width: 18px;
508
+ height: 18px;
509
+ background: var(--input-bg);
510
+ border: 2px solid var(--input-border);
511
+ border-radius: var(--border-radius);
512
+ margin-right: 10px;
513
+ cursor: pointer;
514
+ position: relative;
515
+ transition: var(--transition);
516
+ }
517
+
518
+ .remember-me input[type="checkbox"]:checked {
519
+ background-color: var(--accent);
520
+ border-color: var(--accent);
521
+ }
522
+
523
+ .remember-me input[type="checkbox"]:checked::after {
524
+ content: '\f00c';
525
+ font-family: 'Font Awesome 6 Free';
526
+ font-weight: 900;
527
+ position: absolute;
528
+ top: 50%;
529
+ left: 50%;
530
+ transform: translate(-50%, -50%);
531
+ color: var(--dark);
532
+ font-size: 10px;
533
+ }
534
+
535
+ .remember-me label {
536
+ color: var(--text-light);
537
+ cursor: pointer;
538
+ transition: var(--transition);
539
+ font-size: 0.9rem;
540
+ }
541
+
542
+ .remember-me label:hover {
543
+ color: var(--light);
544
+ }
545
+
546
+ .trust-device-container {
547
+ display: flex;
548
+ align-items: center;
549
+ justify-content: space-between;
550
+ width: 100%;
551
+ margin: 1.5rem 0;
552
+ padding: 1rem;
553
+ background: color-mix(in srgb, var(--accent) 7%, transparent 93%);
554
+ border: 1px solid rgba(0, 184, 148, 0.2);
555
+ border-radius: var(--border-radius);
556
+ transition: var(--transition);
557
+ }
558
+
559
+ .trust-device-container:hover {
560
+ background: rgba(0, 184, 148, 0.08);
561
+ border-color: rgba(0, 184, 148, 0.3);
562
+ }
563
+
564
+ .trust-device-label {
565
+ display: flex;
566
+ align-items: center;
567
+ cursor: pointer;
568
+ flex: 1;
569
+ gap: 12px;
570
+ }
571
+
572
+ .trust-device-checkbox {
573
+ appearance: none;
574
+ -webkit-appearance: none;
575
+ width: 20px;
576
+ height: 20px;
577
+ background: var(--input-bg);
578
+ border: 2px solid rgba(0, 184, 148, 0.4);
579
+ border-radius: 5px;
580
+ cursor: pointer;
581
+ position: relative;
582
+ transition: var(--transition);
583
+ flex-shrink: 0;
584
+ }
585
+
586
+ .trust-device-checkbox:hover {
587
+ border-color: var(--accent);
588
+ background: rgba(0, 184, 148, 0.1);
589
+ }
590
+
591
+ .trust-device-checkbox:checked {
592
+ background-color: var(--accent);
593
+ border-color: var(--accent);
594
+ }
595
+
596
+ .trust-device-checkbox:checked::after {
597
+ content: '\f00c';
598
+ font-family: 'Font Awesome 6 Free';
599
+ font-weight: 900;
600
+ position: absolute;
601
+ top: 50%;
602
+ left: 50%;
603
+ transform: translate(-50%, -50%);
604
+ color: var(--dark);
605
+ font-size: 11px;
606
+ }
607
+
608
+ .checkbox-custom {
609
+ display: none;
610
+ }
611
+
612
+ .checkbox-text {
613
+ color: var(--text);
614
+ font-size: 0.95rem;
615
+ font-weight: 500;
616
+ transition: var(--transition);
617
+ user-select: none;
618
+ }
619
+
620
+ .trust-device-label:hover .checkbox-text {
621
+ color: var(--light);
622
+ }
623
+
624
+ .trust-device-info {
625
+ color: var(--accent);
626
+ cursor: pointer;
627
+ font-size: 1.1rem;
628
+ transition: var(--transition);
629
+ padding: 0.5rem;
630
+ border-radius: 50%;
631
+ flex-shrink: 0;
632
+ }
633
+
634
+ .trust-device-info:hover {
635
+ color: var(--light);
636
+ background: rgba(0, 184, 148, 0.15);
637
+ transform: scale(1.1);
638
+ }
639
+
640
+ .WarningboxInfo {
641
+ background: rgba(255, 209, 102, 0.1);
642
+ border: 1px solid var(--warning);
643
+ border-left: 4px solid var(--warning);
644
+ padding: 0.75rem 1rem;
645
+ border-radius: var(--border-radius);
646
+ color: var(--warning);
647
+ font-size: 0.9rem;
648
+ font-weight: 500;
649
+ margin-top: 1rem;
650
+ margin-bottom: 10px;
651
+ text-align: center;
652
+ box-shadow: var(--box-shadow);
653
+ }
654
+
655
+ .version-info {
656
+ position: fixed;
657
+ bottom: 20px;
658
+ right: 20px;
659
+ background: var(--surface-soft);
660
+ color: var(--text-light);
661
+ padding: 8px 12px;
662
+ border-radius: var(--border-radius);
663
+ font-size: 0.75rem;
664
+ border: 1px solid var(--muted-border);
665
+ z-index: 999;
666
+ transition: var(--transition);
667
+ backdrop-filter: blur(5px);
668
+ }
669
+
670
+ .version-info:hover {
671
+ color: var(--accent);
672
+ border-color: var(--accent);
673
+ }
674
+
675
+ /* Desktop Layout: Two-column design (>1000px) */
676
+ @media (min-width: 1001px) {
677
+ .login-box {
678
+ max-width: 1100px;
679
+ padding: 0;
680
+ overflow: hidden;
681
+ }
682
+
683
+ .login-box-inner {
684
+ flex-direction: row;
685
+ min-height: 600px;
686
+ }
687
+
688
+ /* Left Sidebar: 30% - Branding & Secondary Actions */
689
+ .login-sidebar {
690
+ display: flex;
691
+ flex-direction: column;
692
+ width: 40%;
693
+ background: linear-gradient(135deg, rgba(33, 150, 243, 0.08), rgba(0, 184, 148, 0.08));
694
+ padding: 2.5rem 2rem;
695
+ border-right: 1px solid color-mix(in srgb, var(--accent) 32%, transparent 68%);
696
+ position: relative;
697
+ overflow: hidden;
698
+ }
699
+
700
+ .login-sidebar::before {
701
+ content: '';
702
+ position: absolute;
703
+ top: -50%;
704
+ left: -50%;
705
+ width: 200%;
706
+ height: 200%;
707
+ background: radial-gradient(circle, rgba(0, 184, 148, 0.1) 0%, transparent 70%);
708
+ animation: pulse 8s ease-in-out infinite;
709
+ pointer-events: none;
710
+ z-index: 0;
711
+ }
712
+
713
+ @keyframes pulse {
714
+
715
+ 0%,
716
+ 100% {
717
+ opacity: 0.5;
718
+ transform: scale(1);
719
+ }
720
+
721
+ 50% {
722
+ opacity: 0.8;
723
+ transform: scale(1.1);
724
+ }
725
+ }
726
+
727
+ .sidebar-content {
728
+ display: flex;
729
+ flex-direction: column;
730
+ gap: 2.5rem;
731
+ height: 100%;
732
+ }
733
+
734
+ .brand-section {
735
+ text-align: center;
736
+ }
737
+
738
+ .brand-icon {
739
+ font-size: 3.5rem;
740
+ color: var(--accent);
741
+ margin-bottom: 1.5rem;
742
+ display: block;
743
+ filter: drop-shadow(0 4px 12px rgba(0, 184, 148, 0.4));
744
+ position: relative;
745
+ z-index: 1;
746
+ }
747
+
748
+ .brand-title {
749
+ font-size: 1.5rem;
750
+ font-weight: 700;
751
+ color: var(--light);
752
+ margin-bottom: 0.75rem;
753
+ line-height: 1.3;
754
+ }
755
+
756
+ .brand-description {
757
+ font-size: 0.9rem;
758
+ color: var(--text-light);
759
+ line-height: 1.5;
760
+ }
761
+
762
+ .sidebar-actions {
763
+ display: flex;
764
+ flex-direction: column;
765
+ gap: 1rem;
766
+ }
767
+
768
+ .btn-social {
769
+ display: flex;
770
+ align-items: center;
771
+ justify-content: center;
772
+ gap: 10px;
773
+ padding: 0.85rem 1.1rem;
774
+ border-radius: var(--border-radius);
775
+ font-weight: 600;
776
+ font-size: 0.9rem;
777
+ text-decoration: none;
778
+ transition: var(--transition);
779
+ border: 0.13rem solid;
780
+ position: relative;
781
+ z-index: 1;
782
+ overflow: hidden;
783
+ }
784
+
785
+ .btn-google-side {
786
+ background: var(--surface-soft);
787
+ color: var(--text);
788
+ border-color: var(--muted-border);
789
+ }
790
+
791
+ .btn-google-side:hover {
792
+ background: transparent;
793
+ border-color: var(--accent);
794
+ box-shadow: 0 4px 20px rgba(0, 184, 148, 0.2);
795
+ }
796
+
797
+ .btn-google-side i {
798
+ color: #4285f4;
799
+ }
800
+
801
+ .btn-switch-side {
802
+ background: var(--surface-soft);
803
+ color: var(--text);
804
+ border-color: var(--muted-border);
805
+ }
806
+
807
+ .btn-switch-side:hover {
808
+ background: transparent;
809
+ border-color: var(--accent);
810
+ box-shadow: 0 4px 20px rgba(0, 184, 148, 0.2);
811
+ }
812
+
813
+ .sidebar-links {
814
+ display: flex;
815
+ flex-direction: column;
816
+ gap: 0.75rem;
817
+ margin-top: auto;
818
+ padding-top: 2rem;
819
+ border-top: 1px solid var(--muted-border);
820
+ position: relative;
821
+ z-index: 1;
822
+ }
823
+
824
+ .sidebar-link {
825
+ display: flex;
826
+ align-items: center;
827
+ gap: 10px;
828
+ color: var(--text-light);
829
+ text-decoration: none;
830
+ font-size: 0.85rem;
831
+ transition: var(--transition);
832
+ padding: 0.6rem 0.75rem;
833
+ border-radius: 6px;
834
+ border: 1px solid transparent;
835
+ }
836
+
837
+ .sidebar-link:hover {
838
+ color: var(--accent);
839
+ background: rgba(0, 184, 148, 0.08);
840
+ border-color: rgba(0, 184, 148, 0.3);
841
+ }
842
+
843
+ .sidebar-link i {
844
+ font-size: 0.95rem;
845
+ opacity: 0.8;
846
+ }
847
+
848
+ /* Right Main Form: 70% - Login Fields Only */
849
+ .login-main {
850
+ width: 70%;
851
+ padding: 3rem 4rem;
852
+ display: flex;
853
+ flex-direction: column;
854
+ justify-content: center;
855
+ background: var(--surface-muted);
856
+ }
857
+
858
+ .login-form {
859
+ max-width: 420px;
860
+ margin: 0 auto;
861
+ width: 100%;
862
+ }
863
+
864
+ .login-title {
865
+ margin-bottom: 2.5rem;
866
+ font-size: 2rem;
867
+ text-align: center;
868
+ }
869
+
870
+ .login-title::after {
871
+ display: block;
872
+ }
873
+
874
+ /* Hide mobile-only elements on desktop */
875
+ .mobile-actions {
876
+ display: none;
877
+ }
878
+
879
+ /* Adjust form spacing for cleaner look */
880
+ .form-group {
881
+ margin-bottom: 1.75rem;
882
+ }
883
+
884
+ .terms-info {
885
+ margin-top: 2rem;
886
+ }
887
+ }
888
+
889
+ .logo-centered {
890
+ justify-content: center;
891
+ margin-bottom: 1rem;
892
+ }
893
+
894
+ .form-row-split {
895
+ display: flex;
896
+ justify-content: space-between;
897
+ align-items: center;
898
+ margin-bottom: 1rem;
899
+ gap: 0.75rem;
900
+ }
901
+
902
+ .remember-me-inline {
903
+ margin-bottom: 0;
904
+ }
905
+
906
+ .login-link-nowrap {
907
+ margin-bottom: 0;
908
+ white-space: nowrap;
909
+ }
910
+
911
+ .hidden-by-default {
912
+ display: none;
913
+ }
914
+
915
+ .btn-login-inline {
916
+ text-decoration: none;
917
+ display: inline-block;
918
+ margin-top: 10px;
919
+ text-align: center;
920
+ line-height: 40px;
921
+ }
922
+
923
+ .link-no-decoration {
924
+ text-decoration: none;
925
+ }
926
+
927
+ @media (max-width: 400px) {
928
+
929
+ .logo svg,
930
+ .logo-image {
931
+ height: 30px;
932
+ }
933
+
934
+ .logo-text {
935
+ font-size: 1.6rem;
936
+ }
937
+
938
+ .mbkauthe-btn-login {
939
+ font-size: 1rem !important;
940
+ padding: 6px !important;
941
+ }
942
+ }
943
+
944
+ @media (max-width: 768px) {
945
+ .login-box {
946
+ padding: 2rem;
947
+ }
948
+
949
+ .login-title {
950
+ font-size: 1.8rem;
951
+ }
952
+
953
+ .version-info {
954
+ bottom: 10px;
955
+ right: 10px;
956
+ font-size: 0.7rem;
957
+ padding: 6px 10px;
958
+ }
959
+ }
960
+
961
+ @media (max-width: 576px) {
962
+ .login-box {
963
+ padding: 1.5rem;
964
+ border-radius: var(--border-radius);
965
+ }
966
+
967
+ .login-links {
968
+ flex-direction: row;
969
+ gap: 0.5rem;
970
+ align-items: center;
971
+ }
25
972
  }