.split-layout-body {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.split-layout-left,
.split-layout-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.split-layout-left-container {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo-image {
    width: 160px;
}

.company-logo {
    margin: auto;
}

.welcome-text {
    color: var(--seriesEColor);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Open Sans", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 1000px) {
    .main-container {
        flex-direction: column;
        overflow: auto;
    }

    .split-layout-left,
    .split-layout-right {
        flex: none;
        width: 100%;
        height: 600px;
    }
}

@media (max-width: 1200px) {
    .main-container {
        flex-direction: column;
        overflow: auto;
    }

    .split-layout-left,
    .split-layout-right {
        flex: none;
        width: 100%;
        height: 660px;
    }
}

@media (max-width: 600px) {
    .split-layout-left-container {
        padding: 24px;
    }
}