        * { margin: 0; padding: 0; box-sizing: border-box; }

        .login-page-wrap {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* Constrained wrapper (header + body) */
        .login-body-wrap {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 0 48px 60px;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        /* Header */
        .login-header {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 32px 48px;
        }

        .login-brand-logo {
            display: flex;
            align-items: center;
            overflow: hidden;
            width: 70px;
            height: 32px;
            flex-shrink: 0;
        }

        .login-brand-logo img {
            height: 32px;
            width: auto;
            filter: brightness(0) invert(1);
            display: block;
            margin-top: -5px;
        }

        .login-brand-divider {
            width: 1px;
            height: 36px;
            background: rgba(255,255,255,0.25);
        }

        .login-brand-title {
            font-size: 22px;
            font-weight: 300;
            color: #fff;
            letter-spacing: 0.5px;
            line-height: 1;
        }

        /* Main layout */
        .login-body {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 80px;
        }

        /* Left — Welcome */
        .login-welcome {
            flex: 1;
            max-width: 520px;
        }

        .login-welcome h1 {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .login-welcome p {
            font-size: 20px;
            font-weight: 300;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
        }

        /* Right — Form */
        .login-form-side {
            flex: 1;
            max-width: 440px;
        }

        .login-form-heading {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 32px;
        }

        /* Underline inputs */
        .gs-form-group {
            margin-bottom: 28px;
            position: relative;
        }

        .gs-input {
            width: 100%;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.25);
            padding: 12px 40px 12px 0;
            font-size: 16px;
            font-family: inherit;
            color: #fff;
            background: transparent;
            outline: none;
            transition: border-color 0.2s;
        }

        .gs-input:focus {
            border-bottom-color: rgba(255,255,255,0.7);
        }

        .gs-input::placeholder {
            color: rgba(255,255,255,0.4);
            font-weight: 300;
        }

        .gs-password-wrap {
            position: relative;
        }

        .gs-password-toggle {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: rgba(255,255,255,0.4);
            display: flex;
            align-items: center;
        }

        .gs-password-toggle:hover {
            color: rgba(255,255,255,0.7);
        }

        /* Checkbox */
        .gs-checkbox-row {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 28px;
        }

        .gs-checkbox-row input[type="checkbox"] {
            appearance: none;
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border: 1.5px solid rgba(255,255,255,0.35);
            background: transparent;
            cursor: pointer;
            flex-shrink: 0;
            position: relative;
            transition: all 0.15s;
        }

        .gs-checkbox-row input[type="checkbox"]:checked {
            background: #fff;
            border-color: #fff;
        }

        .gs-checkbox-row input[type="checkbox"]:checked::after {
            content: '';
            position: absolute;
            left: 4px;
            top: 1px;
            width: 5px;
            height: 9px;
            border: 2px solid #0a1628;
            border-top: none;
            border-left: none;
            transform: rotate(45deg);
        }

        .gs-checkbox-row input[type="checkbox"]:hover {
            border-color: rgba(255,255,255,0.7);
        }

        .gs-checkbox-row label {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            cursor: pointer;
        }

        /* Login button */
        .gs-login-btn {
            padding: 14px 48px;
            background: transparent;
            color: rgba(255,255,255,0.5);
            border: 1px solid rgba(255,255,255,0.2);
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 20px;
        }

        .gs-login-btn:hover {
            background: rgba(255,255,255,0.08);
            color: #fff;
            border-color: rgba(255,255,255,0.5);
        }

        /* Links row */
        .gs-links-row {
            display: flex;
            gap: 24px;
            margin-bottom: 40px;
        }

        .gs-links-row a {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.15s;
        }

        .gs-links-row a:hover {
            color: #fff;
        }

        /* Info text */
        .gs-info-text {
            font-size: 13px;
            color: rgba(255,255,255,0.35);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .gs-info-link {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.15s;
        }

        .gs-info-link:hover {
            color: #fff;
        }

        /* Tabs */
        .login-mode-tabs {
            display: flex;
            gap: 24px;
            margin-bottom: 32px;
        }


        .login-mode-tab {
            font-size: 14px;
            font-weight: 600;
            color: rgba(255,255,255,0.35);
            background: none;
            border: none;
            cursor: pointer;
            padding: 0 0 8px 0;
            border-bottom: 2px solid transparent;
            font-family: inherit;
            transition: all 0.15s;
            letter-spacing: 0.5px;
            line-height: 1;
        }

        .login-mode-tab.active {
            color: #fff;
            border-bottom-color: #fff;
        }

        .login-mode-tab:hover:not(.active) {
            color: rgba(255,255,255,0.6);
        }

        /* Register extras */
        .gs-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .gs-full-btn {
            padding: 14px 48px;
            background: transparent;
            color: rgba(255,255,255,0.5);
            border: 1px solid rgba(255,255,255,0.2);
            font-size: 14px;
            font-weight: 600;
            font-family: inherit;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s;
            margin-bottom: 20px;
        }

        .gs-full-btn:hover {
            background: rgba(255,255,255,0.08);
            color: #fff;
            border-color: rgba(255,255,255,0.5);
        }

        .gs-terms-wrap {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 28px;
        }

        .gs-terms-wrap input {
            width: 18px;
            height: 18px;
            accent-color: #fff;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
        }

        .gs-terms-wrap label {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            line-height: 1.5;
            cursor: pointer;
        }

        .gs-terms-wrap a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
        }

        .gs-terms-wrap a:hover {
            color: #fff;
        }

        /* Form panels */
        .form-panel {
            display: none;
        }

        .form-panel.active {
            display: block;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .login-body {
                flex-direction: column;
                align-items: flex-start;
                gap: 48px;
            }

            .login-welcome,
            .login-form-side {
                max-width: 100%;
            }

            .login-welcome h1 {
                font-size: 32px;
            }

            .login-form-side {
                width: 100%;
            }

            .gs-login-btn,
            .gs-full-btn {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .login-body-wrap {
                padding: 0 20px 40px;
            }

            .login-body {
                gap: 36px;
            }

            .login-welcome h1 {
                font-size: 26px;
            }

            .login-welcome p {
                font-size: 16px;
            }

            .login-brand-logo {
            display: flex;
            align-items: center;
                width: 60px;
                height: 28px;
            }

            .login-brand-logo img {
                height: 28px;
            }

            .login-brand-title {
                font-size: 18px;
            }

            .gs-form-row {
                grid-template-columns: 1fr;
            }
        }
