
        /* ============================================================
                   ROOT & RESET — Same as signup
                   ============================================================ */
        :root {
            --pr: #00aaff;
            --pr-d: #0090d9;
            --pr-dd: #0070b0;
            --blue-deep: #003366;
            --bg: #f4f8fc;
            --card: #ffffff;
            --text: #0f1c2e;
            --muted: #64748b;
            --border: #d4e9f7;
            --border2: #c8dff0;
            --success: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            --shadow: 0 1px 4px rgba(15, 28, 46, .06), 0 4px 16px rgba(0, 170, 255, .06);
            --shadow-md: 0 8px 30px rgba(0, 42, 85, 0.12);
            --r: 14px;
            --r-sm: 9px;
            --r-lg: 20px;
            --r-xl: 26px;
            --nav-h: 60px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Sora', sans-serif;
            -webkit-tap-highlight-color: transparent;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        button {
            font-family: 'Sora', sans-serif;
        }
        ::-webkit-scrollbar {
            width: 3px;
            height: 3px;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--border2);
            border-radius: 3px;
        }

        /* ============================================================
                   NAVBAR — Same as signup
                   ============================================================ */
        .navbar {
            height: var(--nav-h);
            background: rgba(255, 255, 255, 0.97);
            backdrop-filter: blur(10px);
            padding: 0 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 200;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 3px;
        }

        .nav-logo {
            width: 45px;
            height: 45px;
            object-fit: contain;
            border-radius: 8px;
            display: block;
        }

        .nav-logo-fb {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background: var(--pr);
            display: none;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 20px;
        }

        .nav-brand-name {
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -.5px;
            color: #0f1c2e;
        }
        .nav-brand-name span {
            color: var(--pr);
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .hamburger {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            background: var(--bg);
            color: var(--text);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: .18s;
        }
        .hamburger:hover {
            background: rgba(0, 170, 255, .08);
            color: var(--pr);
        }

        /* ============================================================
                   SIDEBAR — Same as signup
                   ============================================================ */
        .sidebar-overlay {
            position: fixed;
            inset: 0;
            z-index: 300;
            background: rgba(7, 13, 26, .45);
            backdrop-filter: blur(4px);
            display: none;
            opacity: 0;
            transition: opacity .3s ease;
        }
        .sidebar-overlay.open {
            display: block;
            opacity: 1;
        }

        .sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            max-width: 80vw;
            height: 100%;
            background: var(--card);
            z-index: 301;
            transform: translateX(100%);
            transition: transform .32s cubic-bezier(.34, 1.25, .64, 1);
            box-shadow: -4px 0 30px rgba(0, 0, 0, .12);
            padding: 20px 18px 28px;
            display: flex;
            flex-direction: column;
            border-left: 1px solid var(--border);
            overflow-y: auto;
        }
        .sidebar.open {
            transform: translateX(0);
        }

        .sidebar-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 16px;
        }
        .sidebar-brand {
            font-weight: 800;
            font-size: 1.4rem;
            letter-spacing: -.4px;
        }
        .sidebar-brand span {
            color: var(--pr);
        }
        .sidebar-close {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: none;
            background: var(--bg);
            color: var(--muted);
            cursor: pointer;
            font-size: .85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .15s;
        }
        .sidebar-close:hover {
            background: rgba(0, 170, 255, .08);
            color: var(--pr);
        }

        .sidebar-nav {
            display: flex;
            flex-direction: column;
            gap: 3px;
            flex: 1;
        }
        .sidebar-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 14px;
            border-radius: 10px;
            cursor: pointer;
            font-size: .85rem;
            font-weight: 600;
            color: var(--text);
            transition: .15s;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
            font-family: 'Sora', sans-serif;
        }
        .sidebar-item:hover {
            background: var(--bg);
            color: var(--pr);
        }
        .sidebar-item i {
            width: 18px;
            text-align: center;
            color: var(--muted);
            font-size: .85rem;
            transition: .15s;
        }
        .sidebar-item:hover i {
            color: var(--pr);
        }

        .sidebar-divider {
            height: 1px;
            background: var(--border);
            margin: 6px 0 8px;
        }

        .sidebar-actions {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 12px;
            padding-top: 14px;
            border-top: 1px solid var(--border);
        }
        .sidebar-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px;
            border-radius: 10px;
            font-weight: 700;
            font-size: .85rem;
            cursor: pointer;
            border: none;
            font-family: 'Sora', sans-serif;
            transition: .18s;
        }
        .sidebar-btn.primary {
            background: var(--pr);
            color: #fff;
        }
        .sidebar-btn.primary:hover {
            background: var(--pr-d);
        }
        .sidebar-btn.outline {
            background: var(--bg);
            color: var(--text);
            border: 1.5px solid var(--border);
        }
        .sidebar-btn.outline:hover {
            border-color: var(--pr);
            color: var(--pr);
        }

        /* ============================================================
                   HERO — Gradient (same as signup)
                   ============================================================ */
        .hero {
            background: linear-gradient(140deg, #001a35 0%, var(--blue-deep) 60%, #005599 100%);
            padding: 40px 24px 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 40px;
            background: var(--bg);
            clip-path: ellipse(55% 100% at 50% 100%);
        }

        .hero-badge {
            display: inline-block;
            background: rgba(0, 170, 255, 0.15);
            border: 1px solid rgba(0, 170, 255, 0.3);
            color: #66d4ff;
            font-size: .73rem;
            font-weight: 700;
            letter-spacing: .07em;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 100px;
            margin-bottom: 14px;
        }

        .hero h1 {
            font-size: clamp(1.7rem, 4vw, 2.4rem);
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 8px;
            letter-spacing: -.4px;
        }

        .hero p {
            color: #90bcd8;
            font-size: .95rem;
            max-width: 420px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* ============================================================
                   LAYOUT & CARD
                   ============================================================ */
        .layout {
            max-width: 480px;
            margin: -10px auto 60px;
            padding: 0 16px;
            position: relative;
            z-index: 2;
        }

        .login-card {
            background: var(--card);
            border-radius: var(--r-xl);
            padding: 32px 32px 36px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-md);
        }

        @media (max-width: 480px) {
            .login-card {
                padding: 24px 18px 28px;
            }
        }

        .card-title {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 2px;
            letter-spacing: -.3px;
        }
        .card-sub {
            font-size: .82rem;
            color: var(--muted);
            margin-bottom: 24px;
            font-weight: 500;
        }
        .card-sub a {
            color: var(--pr);
            font-weight: 700;
        }
        .card-sub a:hover {
            text-decoration: underline;
        }

        /* ============================================================
                   FORM
                   ============================================================ */
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-size: .76rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            letter-spacing: .1px;
        }
        .form-group label .required {
            color: var(--danger);
            margin-left: 2px;
        }

        .input-wrap {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--bg);
            border: 1.5px solid var(--border);
            border-radius: 10px;
            transition: border-color .2s, box-shadow .2s, background .2s;
        }
        .input-wrap:focus-within {
            border-color: var(--pr);
            box-shadow: 0 0 0 4px rgba(0, 170, 255, .12);
            background: var(--card);
        }
        .input-wrap .input-icon {
            flex-shrink: 0;
            width: 40px;
            text-align: center;
            color: var(--muted);
            font-size: .85rem;
            transition: color .2s;
        }
        .input-wrap:focus-within .input-icon {
            color: var(--pr);
        }

        .input-wrap input {
            width: 100%;
            padding: 11px 12px 11px 0;
            border: none;
            background: transparent;
            font-family: 'Sora', sans-serif;
            font-size: .88rem;
            color: var(--text);
            outline: none;
            font-weight: 500;
        }
        .input-wrap input::placeholder {
            color: #a0b8cc;
            font-weight: 400;
        }

        /* Toggle password */
        .toggle-pw {
            flex-shrink: 0;
            width: 36px;
            text-align: center;
            color: var(--muted);
            cursor: pointer;
            font-size: .85rem;
            transition: color .2s;
            background: none;
            border: none;
            padding: 0;
        }
        .toggle-pw:hover {
            color: var(--text);
        }

        /* Error states */
        .form-group.error .input-wrap {
            border-color: var(--danger);
            background: #fff5f5;
        }
        .form-group.error .input-wrap:focus-within {
            box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
        }
        .form-group .error-text {
            font-size: .72rem;
            color: var(--danger);
            margin-top: 4px;
            display: none;
            font-weight: 600;
        }
        .form-group.error .error-text {
            display: block;
        }
        .form-group.success .input-wrap {
            border-color: var(--success);
        }

        /* Remember me row */
        .form-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 2px 0 14px;
            flex-wrap: wrap;
            gap: 6px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 7px;
            cursor: pointer;
            font-size: .78rem;
            font-weight: 600;
            color: var(--muted);
        }
        .remember-me input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--pr);
            cursor: pointer;
        }
        .remember-me:hover {
            color: var(--text);
        }

        .forgot-link {
            font-size: .78rem;
            font-weight: 700;
            color: var(--pr);
            cursor: pointer;
            border: none;
            background: none;
            font-family: 'Sora', sans-serif;
            transition: .15s;
        }
        .forgot-link:hover {
            color: var(--pr-d);
            text-decoration: underline;
        }

        /* Submit Button */
        .btn-submit {
            width: 100%;
            padding: 13px;
            border: none;
            border-radius: 10px;
            background: var(--pr);
            color: #fff;
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: .92rem;
            cursor: pointer;
            transition: background .2s, transform .15s, box-shadow .2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            letter-spacing: -.2px;
            margin-top: 2px;
            position: relative;
        }
        .btn-submit:hover:not(:disabled) {
            background: var(--pr-d);
            box-shadow: 0 6px 20px rgba(0, 170, 255, .25);
        }
        .btn-submit:active:not(:disabled) {
            transform: scale(.97);
        }
        .btn-submit:disabled {
            opacity: .7;
            cursor: not-allowed;
            transform: none;
        }
        .btn-submit .spinner-btn {
            display: none;
            width: 20px;
            height: 20px;
            border: 2.5px solid rgba(255, 255, 255, .3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }
        .btn-submit.loading .spinner-btn {
            display: inline-block;
        }
        .btn-submit.loading .btn-text {
            display: none;
        }
        .btn-submit.loading .btn-icon {
            display: none;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .divider {
            display: flex;
            align-items: center;
            gap: 14px;
            margin: 20px 0 16px;
        }
        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }
        .divider span {
            font-size: .7rem;
            font-weight: 600;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .05em;
        }

        .signup-link {
            text-align: center;
            font-size: .82rem;
            color: var(--muted);
            font-weight: 500;
        }
        .signup-link a {
            font-weight: 700;
            color: var(--pr);
        }
        .signup-link a:hover {
            text-decoration: underline;
        }

        /* ============================================================
                   PROCESSING OVERLAY — Opay-style fast zoom
                   ============================================================ */
        .proc-overlay {
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(7, 13, 26, .82);
            backdrop-filter: blur(8px);
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity .3s ease;
        }
        .proc-overlay.active {
            display: flex;
            opacity: 1;
        }

        .proc-box {
            background: var(--card);
            border-radius: var(--r-xl);
            padding: 36px 30px 30px;
            max-width: 280px;
            width: 90%;
            text-align: center;
            box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
            transform: scale(.94) translateY(12px);
            transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease;
            opacity: 0;
            border: 1px solid var(--border);
        }
        .proc-overlay.active .proc-box {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .proc-logo-wrap {
            width: 80px;
            height: 80px;
            margin: 0 auto 16px;
            position: relative;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .proc-logo-wrap img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 50%;
            animation: procZoomFast 0.7s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }
        @keyframes procZoomFast {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.12);
            }
        }
        .proc-logo-wrap::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid rgba(0, 170, 255, .3);
            animation: procRippleFast 0.9s ease-in-out infinite;
        }
        .proc-logo-wrap::after {
            content: '';
            position: absolute;
            inset: -14px;
            border-radius: 50%;
            border: 1.5px solid rgba(0, 170, 255, .15);
            animation: procRippleFast 0.9s ease-in-out .25s infinite;
        }
        @keyframes procRippleFast {
            0% {
                transform: scale(1);
                opacity: .7;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .proc-title {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 4px;
            letter-spacing: -.3px;
            color: var(--text);
        }
        .proc-sub {
            font-size: .76rem;
            color: var(--muted);
            line-height: 1.5;
            font-weight: 500;
        }
        .proc-dots {
            display: flex;
            justify-content: center;
            gap: 6px;
            margin-top: 14px;
        }
        .proc-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--pr);
            animation: dotPulse 1.2s ease-in-out infinite;
        }
        .proc-dot:nth-child(2) {
            animation-delay: .2s;
        }
        .proc-dot:nth-child(3) {
            animation-delay: .4s;
        }
        .proc-dot:nth-child(4) {
            animation-delay: .6s;
        }
        .proc-dot:nth-child(5) {
            animation-delay: .8s;
        }
        @keyframes dotPulse {
            0%,
            80%,
            100% {
                transform: scale(.5);
                opacity: .3;
            }
            40% {
                transform: scale(1);
                opacity: 1;
                background: var(--pr);
            }
        }

        .proc-status-icon {
            font-size: 2.8rem;
            margin-bottom: 8px;
            display: none;
        }
        .proc-status-icon.success {
            display: block;
            color: var(--success);
        }
        .proc-status-icon.error {
            display: block;
            color: var(--danger);
        }

        .proc-btn-done {
            margin-top: 16px;
            padding: 10px 28px;
            border: none;
            border-radius: 10px;
            background: var(--pr);
            color: #fff;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: .82rem;
            cursor: pointer;
            transition: background .2s;
            display: none;
        }
        .proc-btn-done:hover {
            background: var(--pr-d);
        }

        /* ============================================================
                   FORGOT PASSWORD MODAL
                   ============================================================ */
        .modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 500;
            background: rgba(7, 13, 26, .6);
            backdrop-filter: blur(6px);
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity .3s ease;
        }
        .modal-overlay.show {
            display: flex;
            opacity: 1;
        }

        .modal-box {
            background: var(--card);
            border-radius: var(--r-xl);
            padding: 32px 28px 30px;
            max-width: 400px;
            width: 92%;
            box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
            border: 1px solid var(--border);
            transform: scale(.94) translateY(12px);
            transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), opacity .35s ease;
            opacity: 0;
        }
        .modal-overlay.show .modal-box {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .modal-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 16px;
        }
        .modal-title {
            font-size: 1.05rem;
            font-weight: 800;
            letter-spacing: -.3px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .modal-title i {
            color: var(--pr);
            font-size: 1rem;
        }
        .modal-close {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: none;
            background: var(--bg);
            color: var(--muted);
            cursor: pointer;
            font-size: .85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .15s;
        }
        .modal-close:hover {
            background: rgba(0, 170, 255, .08);
            color: var(--pr);
        }

        .modal-desc {
            font-size: .82rem;
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 18px;
            font-weight: 500;
        }

        .modal-form .form-group {
            margin-bottom: 14px;
        }

        .modal-btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 10px;
            background: var(--pr);
            color: #fff;
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: .88rem;
            cursor: pointer;
            transition: background .2s, transform .15s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .modal-btn:hover:not(:disabled) {
            background: var(--pr-d);
        }
        .modal-btn:active:not(:disabled) {
            transform: scale(.97);
        }
        .modal-btn:disabled {
            opacity: .6;
            cursor: not-allowed;
        }
        .modal-btn .spinner-btn {
            display: none;
            width: 18px;
            height: 18px;
            border: 2.5px solid rgba(255, 255, 255, .3);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }
        .modal-btn.loading .spinner-btn {
            display: inline-block;
        }
        .modal-btn.loading .btn-text {
            display: none;
        }

        /* Forgot password success state inside modal */
        .fp-success {
            display: none;
            text-align: center;
            padding: 8px 0;
        }
        .fp-success.show {
            display: block;
            animation: fadeIn .3s ease;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fp-success .icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(16, 185, 129, .12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            font-size: 1.6rem;
            color: var(--success);
        }
        .fp-success h4 {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 4px;
        }
        .fp-success p {
            font-size: .8rem;
            color: var(--muted);
            line-height: 1.6;
            font-weight: 500;
        }
        .fp-success .btn-close-modal {
            margin-top: 16px;
            padding: 10px 28px;
            border: none;
            border-radius: 10px;
            background: var(--pr);
            color: #fff;
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: .82rem;
            cursor: pointer;
            transition: background .2s;
        }
        .fp-success .btn-close-modal:hover {
            background: var(--pr-d);
        }

        /* ============================================================
                   TOAST — Same as signup
                   ============================================================ */
        .toast-container {
            position: fixed;
            top: 16px;
            right: 16px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 8px;
            pointer-events: none;
            max-width: 320px;
        }
        .toast-item {
            background: var(--card);
            color: var(--text);
            padding: 12px 14px;
            border-radius: 13px;
            font-size: .78rem;
            font-weight: 600;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            border: 1px solid var(--border);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
            pointer-events: all;
            transform: translateX(110%);
            transition: transform .32s cubic-bezier(.34, 1.25, .64, 1), opacity .3s;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }
        .toast-item.show {
            transform: translateX(0);
            opacity: 1;
        }
        .toast-item.hide {
            transform: translateX(110%);
            opacity: 0;
        }
        .toast-ico {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: .8rem;
            flex-shrink: 0;
        }
        .toast-ico.green {
            background: rgba(16, 185, 129, .12);
            color: var(--success);
        }
        .toast-ico.red {
            background: rgba(239, 68, 68, .12);
            color: var(--danger);
        }
        .toast-ico.blue {
            background: rgba(0, 170, 255, .12);
            color: var(--pr);
        }
        .toast-body {
            flex: 1;
            min-width: 0;
        }
        .toast-title {
            font-size: .78rem;
            font-weight: 700;
            margin-bottom: 1px;
        }
        .toast-msg {
            font-size: .68rem;
            color: var(--muted);
            font-weight: 500;
            line-height: 1.4;
        }
        .toast-close {
            background: none;
            border: none;
            color: var(--muted);
            font-size: .7rem;
            cursor: pointer;
            padding: 2px;
            flex-shrink: 0;
            margin-top: 1px;
            transition: .15s;
        }
        .toast-close:hover {
            color: var(--text);
        }
        .toast-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            border-radius: 0 0 13px 13px;
            transition: width linear;
        }
        .toast-progress.green {
            background: var(--success);
        }
        .toast-progress.red {
            background: var(--danger);
        }
        .toast-progress.blue {
            background: var(--pr);
        }

        /* ============================================================
                   FOOTER
                   ============================================================ */
        footer {
            background: var(--card);
            border-top: 1px solid var(--border);
            color: var(--muted);
            text-align: center;
            padding: 20px 16px 24px;
            font-size: .75rem;
            font-weight: 500;
            margin-top: 20px;
        }
        footer a {
            color: var(--pr);
            font-weight: 600;
        }
        footer a:hover {
            text-decoration: underline;
        }
        footer p+p {
            margin-top: 6px;
        }

        /* ============================================================
                   RESPONSIVE
                   ============================================================ */
        @media (max-width: 400px) {
            .nav-brand-name {
                font-size: 1.4rem;
            }
            .nav-logo {
                width: 48px;
                height: 48px;
            }
            .login-card {
                padding: 20px 14px 22px;
            }
            .proc-box {
                padding: 28px 20px 24px;
            }
            .proc-logo-wrap {
                width: 64px;
                height: 64px;
            }
            .modal-box {
                padding: 24px 18px 24px;
            }
        }
