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

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

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

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

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

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

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

        .fp-body-wrap {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 0 48px 60px;
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
        }

        .fp-body {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 80px;
        }

        .fp-welcome {
            flex: 1;
            max-width: 520px;
        }

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

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

        .fp-container {
            flex: 1;
            max-width: 440px;
        }

        .fp-back {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: rgba(255,255,255,0.4);
            text-decoration: none;
            margin-bottom: 40px;
            transition: color 0.15s;
        }

        .fp-back:hover {
            color: #fff;
        }

        .fp-back .material-symbols-outlined {
            font-size: 18px;
        }

        .fp-heading {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .fp-desc {
            font-size: 15px;
            font-weight: 300;
            color: rgba(255,255,255,0.5);
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .gs-form-group {
            margin-bottom: 28px;
        }

        .gs-input {
            width: 100%;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.25);
            padding: 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;
        }

        .fp-submit {
            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: 24px;
        }

        .fp-submit:hover {
            background: rgba(255,255,255,0.08);
            color: #fff;
            border-color: rgba(255,255,255,0.5);
        }

        .fp-help {
            font-size: 13px;
            color: rgba(255,255,255,0.35);
            line-height: 1.6;
        }

        .fp-help a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.15s;
        }

        .fp-help a:hover {
            color: #fff;
        }

        /* Steps */
        .fp-step {
            display: none;
        }

        .fp-step.active {
            display: block;
        }

        /* Code input */
        .fp-code-row {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
        }

        .fp-code-input {
            width: 52px;
            height: 56px;
            border: 1px solid rgba(255,255,255,0.2);
            background: rgba(255,255,255,0.04);
            border-radius: 4px;
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            font-family: inherit;
            color: #fff;
            outline: none;
            transition: border-color 0.2s;
        }

        .fp-code-input:focus {
            border-color: rgba(255,255,255,0.6);
            background: rgba(255,255,255,0.08);
        }

        .fp-resend {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            margin-bottom: 32px;
        }

        .fp-resend a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            cursor: pointer;
            transition: color 0.15s;
        }

        .fp-resend a:hover {
            color: #fff;
        }

        /* New password */
        .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);
        }

        .fp-requirements {
            margin-bottom: 32px;
        }

        .fp-req-title {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .fp-req-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.35);
            padding: 4px 0;
        }

        .fp-req-item .material-symbols-outlined {
            font-size: 16px;
            color: rgba(255,255,255,0.2);
        }

        /* Success */
        .fp-success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .fp-success-icon .material-symbols-outlined {
            font-size: 32px;
            color: #4caf50;
        }

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

            .fp-welcome, .fp-container {
                max-width: 100%;
            }

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

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

            .fp-body {
                gap: 36px;
            }

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

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

            .fp-heading {
                font-size: 22px;
            }

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

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

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

            .fp-code-input {
                width: 44px;
                height: 48px;
                font-size: 20px;
            }
        }
