﻿.login-new {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 70vh;
    font-family: 'Source Serif 4'
}

.left {
    width: 45%
}

.right {
    justify-content: end;
    display: flex;
    justify-content: flex-end;
}
@media only screen and (max-width: 600px) {
    .login-new
    {
        flex-direction:column;
    }
    .left {
        width: 100%;
    }
    .right
    {
        display:none;
    }
}