.login-page {
    background: #fff;
}

.login-logo {
    text-align: left;
}

.login-logo img {
    height: 30px;
}

.login-box-body h2 {
    font-weight: 600;
    margin-bottom: 35px;
    color: #353535;
    font-size: 26px;
    margin-top: 10px;
}

.login-box-body .form-group {
    margin-bottom: 25px;
}

.login-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.login-img {
    max-width: 480px;
}

.login-img img {
    object-fit: cover;
    height: 100vh;
    max-width: 100%;
}

.login-box-body {
    width: 480px;
    background: #fff;
    padding: 20px;
    border-top: 0;
    color: #7e807d;
    font-weight: 500;
    margin-left: 60px;
}

.login-box-msg {
    margin: 0;
    text-align: center;
    padding: 0 20px 20px 20px;
}

.form-control,
.input-group-sm>.form-control {
    height: auto;
    padding: 10px 12px 10px;
    border-color: rgba(0, 0, 0, 0.15);
    transition: all 0.3s linear;
    border-radius: 4px!important;
}

.form-control:focus {
    border-color: #8c4399;
}

.login-box-body .form-control-feedback,
.register-box-body .form-control-feedback {
    color: #777;
    position: absolute;
    top: 4px;
}

.btn {
    font-size: 16px;
    padding: 15px 20px 15px;
    border: none;
    letter-spacing: 0.35px;
    background-color: #8c4399;
    border-radius: 4px;
    transition: all 0.3s linear;
    color: white;
    font-weight: 600;
    border-radius: 4px!important;
}

.btn:hover,
.btn:active,
.btn:focus {
    color: white;
    background-color: #222423;
}

.forgot-pass {
    display: block;
    color: #222;
    font-weight: bold;
    padding-top: 5px;
    font-size: 14px;
    text-align: right;
    margin-top: 5px;
}

.forgot-pass:hover {
    display: block;
    color: #8c4399;
}

@media all and (max-width:767px) {
    .login-img {
        order: 1;
    }
    .login-box-body {
        width: 100%;
        margin-left: 0;
    }
    .forgot-pass {
        font-size: 13px;
    }
    .login-img img {
        height: auto;
    }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5500s ease-in-out 0s;
    -webkit-text-fill-color: #222 !important;
}