.login-container {
    height: 100vh;
}

.credential-container {
    width: 700px;
    padding: 100px 80px;
    box-sizing: border-box;
    background-color: #f5f6fb;
    z-index: 1;
    box-shadow: 1px 0px 5px rgb(0 0 0 / 25%);
    height: 100vh;
    overflow: auto;
}

.c-logo {
    height: 65px;
    margin-bottom: 40px;
}

    .c-logo img {
        margin: 0px;
        height: 100%;
    }

.c-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: -1px;
    color: #1e2273;
}

.c-subtitle {
    font-size: 14px;
    color: #616161;
    margin-bottom: 35px;
}

.login-form{

}

.lf-feild {
    margin: 20px 0px;
}

.lf-feild-msg{
    color: red;
    font-size: 13px;
    font-weight: bold;
    padding: 0px 5px;
    height: 16px;
}

.lf-title {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
}

.lf-input {
    box-shadow: unset;
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
}

.btn-login {
    background-color: #1e2273 !important;
    border-color: #1e2273 !important;
    padding: 13px !important;
    font-size: 15px;
}

.banner-container {
    width: calc(100% - 700px);
}
.login_slide {
    height: 100vh;
    color: #ffffff;
}
.login-banner-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.login-banner-content{
    width: 80%;
    background-color: #fff;
    color: #424242;
    padding: 20px 30px 30px;
    position: absolute;
    border-radius: 18px;
    box-shadow: inset 1px 1px 4px rgb(0 0 0 / 25%);
    bottom: 100px;
}
.login-banner-title{
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    background-color: #d8e0e4;
    color: #1e2273;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #fff;
    margin-top: -70px;
}
.login-banner-subtitle{
    text-align: center;
    font-size: 18px;
}

@media (min-width: 300px) and (max-width: 640px) {
    .banner-container {
        order: 2;
        width: 100%;
        position: relative;
    }
    .credential-container {
        order: 1;
        width: 100%;
        padding: 50px;
        height: unset;
    }
}