<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: Inter;
    src: local(Inter-VariableFont_opsz,wght) url('font/Inter-VariableFont_opsz,wght.ttf') format('truetype');
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    font-family: Inter, sans-serif;
    background: linear-gradient(68.66deg, #e8e2ff 1.3%, #f7f5ff 50%);
    padding-top: max(15vh, 40px);
    padding-bottom: 4rem;
}

.body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2); /* Translucent overlay */
    pointer-events: none; /* Ensures it doesn't block interactions */
}

.login-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-container {
    display: flex;
    width: 1050px;
    height: 700px;
    background: transparent;
    border-radius: 1rem;
    padding-right: 0;
    padding-left: 0;
    box-shadow: 0 8px 24px rgba(109, 74, 255, 0.5);
}

.login-left {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    padding: 40px;
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    position: relative;
}

.login-logo {
    width: 150px;
    margin-top: 30px;
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 30px;
    font-weight: 600;
}

.sign-in-title {
    font-size: 26px;
    font-weight: 600;
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

.app-input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    height: 3.5rem !important;
}

    .app-input:focus {
        border-color: #8266FF;
        box-shadow: none;
    }

.btn-primary {
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    background-color: #8266FF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: #8266FF;
        opacity: 0.9;
    }

    .btn-primary:focus {
        background-color: #8266FF;
        border-color: #8266FF;
        box-shadow: none;
        opacity: 1;
    }

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    width: 100%;
}

    .divider span {
        flex-grow: 1;
    }

.list-inline {
    width: 246px;
}

.external-login-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: var(--external-login-primary);
    color: #5E5E5E;
    border: none;
    font-weight: 600;
    font-size: 15px;
    height: 41px;
    border-radius: 2px;
    width: 100%;
}

.ms-li-item {
    border-radius: 2px;
    border: 1px solid #8C8C8C;
}

.external-login-button:hover {
    background-color: #EEEEEE;
    color: #5E5E5E;
    border: none;
}

.provider-name {
    color: #5E5E5E;
    font-weight: 600;
}

.login-right {
    width: 55%;
    position: relative;
}

.background-image {
    height: 100%;
    object-fit: cover;
    object-position: left;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.watermark-image {
    width: 45%;
    position: absolute;
    right: 20px;
    bottom: 10px;
}

.test-mode {
    background-color: #f2b663; /* Use your --login-primary color */
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    height: 50px; /* Adjust the height as needed */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* Ensure it spans the full width of the left side */
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
    border-bottom-left-radius: 1rem;
}

.attribution {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #E0E0E0;
    margin-right: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.5;
}

.photo-link {
    color: #F5F5F5;
}

    .photo-link:hover {
        color: #E0E0E0;
    }

.login-content {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 500px;
    box-shadow: 0 8px 24px rgba(109, 74, 255, 0.5);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border-radius: 1rem;
    padding: 2rem 2rem 3rem 2rem;
}

.set-password-form {
    display: flex;
    flex-direction: column;
}

.info {
    color: black;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

.text-container {
    text-align: left;
}

.link {
    color: black;
}

link:hover {
    color: rgba(0, 0, 0, 0, 0.6);
}

.qr-code {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-left: -2rem;
}

.logged-out-page {
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: flex-start;
}

.title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 16px;
    font-weight: 400;
}

.verification-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: -2rem;
    margin-top: 2rem;
}

.alert-info {
    margin-left: -2rem;
}

.error-list-container {
    padding: 10px;
    font-size: 14px;
}

    .error-list-container ul {
        margin-bottom: 0;
        padding-left: 20px;
    }

.info-text-margin-top {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.two-factor-input {
    margin-bottom: 1rem;
}

.checkbox-style:checked {
    background-color: #8266FF;
    border-color: #8266FF;
}

.checkbox-style:focus {
    border-color: #8266FF;
    box-shadow: none;
}

.reset-pass-input {
    margin-bottom: 1rem;
}

.reset-pass-label {
    opacity: 0.7;
    font-weight: 400;
}

.reset-pass-title {
    display: flex;
    justify-content: center;
}

.reset-pwd-form {
    display: flex;
    justify-content: center;
}

.confirmation-page-container {
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: flex-start;
}

.confirmation-title {
    font-size: 24px;
    margin-bottom: 0.5rem;
}

.confirmation-text {
    font-size: 16px;
    margin-bottom: 1rem;
}

.align-left {
    text-align: left;
}

.login-form-style {
    width: 270px;
}

.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 0.15rem solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
}

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

.login-button.disabled {
    background-color: #8266FF; /* Keep the same background color */
    opacity: 0.6; /* Maintain the same opacity */
    cursor: not-allowed; /* Set cursor to not-allowed */
    margin-top: 2.25rem; /* Keep the margin */
    display: flex; /* Use flexbox */
    align-items: center; /* Center align items */
    justify-content: center; /* Center justify items */
    gap: 0.5rem; /* Space between items */
    position: relative; /* Positioning context for children */
}

/* General button style for disabled */
.btn.disabled {
    background-color: #8266FF !important; /* Override background color */
}

/* Spinner visibility */
.login-button .spinner {
    display: none;
    position: absolute; /* Absolute positioning */
    left: 3.5rem; /* Position the spinner */
}

.login-button.disabled .spinner {
    display: inline-block;
}

/* Hide signing-in text when not disabled */
.login-button .signing-in-text {
    display: none; /* Initially hide the signing-in text */
}

/* Show signing-in text when button is disabled */
.login-button.disabled .signing-in-text {
    display: inline; /* Show signing-in text when disabled */
}

/* Hide button text when button is disabled */
.login-button.disabled #buttonText {
    display: none; /* Hide button text when disabled */
}

@media (max-width: 1250px) {
    .login-right {
        display: none;
    }

    .login-container {
        width: 525px;
    }

    .login-left {
        width: 100%;
        border-radius: 1rem;
    }

    .test-mode {
        border-bottom-right-radius: 1rem;
    }
}

@media (max-width: 550px) {
    .login-container {
        width: 100%;
        min-height: 100vh;
    }

    body {
        align-items: center;
        padding: 0;
    }

    .login-left {
        display: flex;
        align-items: center;
        border-radius: 0rem;
        padding: 2rem;
    }

    .container {
        width: 100%;
        padding: 0;
        margin: 0;
        height: 100%;
        min-height: 100vh;
    }

    .justify-content-center {
        width: 100%;
        height: 100%;
        min-height: 100vh;
    }

    .test-mode {
        border-radius: 0;
        border-bottom-left-radius: 0 !important;
    }

    .login-form-style {
        width: 350px;
        margin-top: 1rem;
    }

    .sign-in-title {
        margin-top: 1rem;
    }

    .list-inline {
        width: 350px;
    }
}</pre></body></html>