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