/* Move the login region to the right */
t-PageBody--login .t-Body {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 20px; /* Adjust the margin as needed */
}

/* Make sure it's responsive */
@media screen and (max-width: 768px) {
    t-PageBody--login .t-Body {
        position: static;
        transform: translateY(0);
        margin: 10px auto;
    }
}