.main-two-column-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--bg-primary);
}

.two-column-layout-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}


.two-column-layout-left-container{
    background-color: var(--bg-secondary);
    height: 100%;    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 65%;
}

.two-column-layout-right-container{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 35%;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.25);
}

@media (max-width: 830px) {
    .main-two-column-layout {
        height: auto;
        min-height: 100vh;
    }

    .two-column-layout-container {
        flex-direction: column;
        padding-top: 12vh;
    }

    .two-column-layout-left-container {
        width: 100%;
        background-color: var(--bg-primary);
    }

    .two-column-layout-right-container {
        width: 100%;
        box-shadow: none;
    }
}