body {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
    height: 100vh;
}

body:before {
    content: "";
    position: absolute;
    height: 100%;
    min-width: 44%;
    background: url('../login_images/login_image.png') no-repeat scroll 0 0 / 100% 100%;
    bottom: 0;
    left: 0;
}

body:after {
    content: url('https:/');
    position: absolute;
    height: 35px;
    width: 150px;
    bottom: 2%;
    left: 17%;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

.loginpage-area {
    overflow: hidden;
}

.loginpage-area .container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.loginpage-flex {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 9;
}

.loginpage-image {
    width: 40%;
    float: left;
    text-align: center;
    height: 100%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.loginpage-image a img {
    max-height: 35px;
}

.loginpage-form {
    width: 60%;
    height: 100%;
}

.loginform-text {
    width: 70%;
    margin: auto;
}

.loginform-heading h2 {
    font-weight: 400;
    color: #333;
    margin: 0;
}

.loginform-text h4 {
    font-weight: 600;
    color: #010101;
    font-size: 35px;
    padding: 15px 0px;
    margin: 0;
}

.loginform-text input {
    width: 100%;
    padding: 15px 14px;
    border: 1px solid #CCCCCC;
    margin: 10px 0px;
    color: #333;
    font-weight: 500;
    font-size: 17px;
    background: #F6F6F6;
    box-sizing: border-box;
    border-radius: 6px;
}

.loginform-text input::placeholder {
    color: #333;
    opacity: 1;
}

.loginform-text input:-ms-input-placeholder {
    color: #333;
}

.loginform-text input::-ms-input-placeholder {
    color: #333;
}

.loginform-text input:focus::placeholder {
    color: transparent;
}

.loginform-text .login-button {
    text-align: center;
    padding-top: 15px;
}

.loginform-text .login-button button {
    background: #177CF4;
    color: #fff;
    border: none;
    padding: 12px 35px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.loginform-text .login-button button:hover {
    background: #010B84;
}

@media (max-width: 767px) {
    body {
        background: url('../login_images/login_image.png') no-repeat scroll 0 0 / 100% 100%;
    }

    body::before {
        display: none;
    }

    body::after {
        display: none;
    }

    .loginpage-flex {
        display: block;
        border-radius: 0;
        top: 46%;
        position: inherit;
        transition: inherit;
        transform: inherit;
        background: #ffffffad;
    }

    .loginpage-image {
        display: block;
        width: 100%;
        border-radius: 0;
        padding: 10px;
        padding-top: 20px;
        background: none;
    }

    .loginpage-image p {
        display: none;
    }

    .loginpage-form {
        width: 100%;
        margin-left: 0px;
        padding-top: 0;
        padding-bottom: 0;
        border-radius: 0px;
        background: none;
        height: 100vh;
    }

    .loginform-text {
        overflow: hidden;
        padding-top: 25px;
    }

    .loginpage-form h2 {
        text-align: center;
        color: #333;
    }

    .welcomeback {
        display: none;
    }

    .footer-creadit {
        display: none;
    }
}

@media (max-width: 420px) {
    .loginpage-image .banner {
        margin-top: 0px;
    }

    .loginpage-flex {
        top: 59%;
    }
}
