<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    display: flex;
    height: 100vh;
}

.container {
    display: flex;
    flex: 1;
    height: 100%;
}

.left-section, .right-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.left-section {
    background-color: #ffffff;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
}

.left-section h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.left-section p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
}


.right-section {
    background-color: var(--app-default-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-section img {
    max-width: 80%;
    height: auto;
}</pre></body></html>