#layout-content.split-login {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    width: 100%;
    height: 100%;
}
#layout-content.split-login .login-left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    padding-top: 0.5rem;
}
#layout-content.split-login .login-right {
    flex: 1 1 60%;
    background: #1d3a5f url('../images/login-home-webmail.jpg') center/cover no-repeat;
}
.login-left .custom-text {
    margin: 1.5rem auto;
    padding: 0.8rem 2rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background: #1d3a5f;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: inline-block;
}
@media (max-width: 768px) {
    #layout-content.split-login {
        flex-direction: column !important;
        height: auto !important;
        min-height: 100%;
    }
    #layout-content.split-login .login-left {
        flex: 0 0 auto !important;
        width: 100% !important;
        padding: 1.5rem !important;
        order: 1;
    }
    #layout-content.split-login .login-right {
        display: block !important;
        flex: 0 0 auto !important;
        width: 100% !important;
        height: 35vh !important;
        min-height: 180px !important;
        order: 2;
    }
    .login-left .custom-text {
        font-size: 1.4rem;
        padding: 0.6rem 1.2rem;
    }
}
