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

        body, html {
            height: 100%;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: #ffffff;
            overflow-x: hidden;
            margin: 0px
        }

        .main-container {
            width: 100%;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .background-section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .background-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .lg-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 980px;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 925px;
        }

        .lg-box {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.6);
            width: 100%;
            max-width: 400px;
            padding: 50px 60px;
            display: grid;
            place-items: center;
        }

        .microsoft-logo {
            display: block;
            width: 155px;
            height: 32px;
            margin: 0 auto 30px;
            object-fit: contain;
        }

        .lg-title {
            text-align: center;
            font-family: 'alfabet', sans-serif;
            font-size: 20px;
            font-weight: normal;
            color: #000000;
            margin-bottom: 37px;
            line-height: 1.4;
        }

        .qr-code {
            display: block;
            width: 133px;
            height: 133px;
            margin: 0 auto 23px;
            object-fit: contain;
        }

        .lg-description {
            text-align: center;
            font-family: 'alfabet', sans-serif;
            font-size: 15px;
            font-weight: normal;
            color: #000000;
            margin-bottom: 29px;
            line-height: 1.4;
        }

        .continue-button {
            display: block;
            width: 100%;
            max-width: 343px;
            height: 40px;
            margin: 0 auto 50px;
            background: #0057E1;
            border: none;
            border-radius: 8px;
            box-shadow: 0.71px 0.71px 8px #0057E1;
            color: #FFFFFF;
            font-family: 'alfabet', sans-serif;
            font-size: 16px;
            font-weight: normal;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .continue-button:hover {
            background: rgba(0, 87, 225, 0.5);
            color: #FFFFFF;
        }

        .continue-button:active {
            transform: translateY(1px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .lg-container {
                padding: 15px;
                min-height: auto;
                margin-top: 0;
            }

            .lg-box {
                padding: 30px 25px;
                margin-top: 50px;
                max-width: 100%;
            }

            .microsoft-logo {
                width: 120px;
                height: 25px;
                margin-bottom: 25px;
            }

            .lg-title {
                font-size: 18px;
                margin-bottom: 25px;
            }

            .qr-code {
                width: 100px;
                height: 100px;
                margin-bottom: 20px;
            }

            .lg-description {
                font-size: 14px;
                margin-bottom: 25px;
            }

            .continue-button {
                max-width: 100%;
                height: 45px;
                font-size: 15px;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .lg-box {
                padding: 25px 20px;
                margin-top: 30px;
            }

            .microsoft-logo {
                width: 100px;
                height: 20px;
            }

            .lg-title {
                font-size: 16px;
            }

            .qr-code {
                width: 80px;
                height: 80px;
            }

            .lg-description {
                font-size: 13px;
            }

            .continue-button {
                height: 50px;
                font-size: 14px;
            }
        }

        /* Font face for alfabet */
        @font-face {
            font-family: 'alfabet';
            font-style: normal;
            font-weight: 400;
            src: local('Arial'), local('Helvetica'), sans-serif;
        }

        @font-face {
            font-family: 'alfabet';
            font-style: italic;
            font-weight: 400;
            src: local('Arial Italic'), local('Helvetica Italic'), sans-serif;
        }
    </style>