body {
    background-color: #e9eff4!important;
}
.login-body {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: flex-start;
}
.login-box-wrap {
    min-width: 400px;
    max-width: 7500px;
    background-color: #fff;
    margin: 15px;
    /*padding: 30px 50px;*/
    border-radius: 5px;
    transform: translateY(-20px);
    box-shadow:  1px 9px 18px rgb(62 85 120 / 45%);
}
@media (min-width: 992px) {
    .login-box-wrap {
        width: 720px;
    }
}
@media (max-width: 450px) {
    .login-box-wrap {
        width: 100%;
    }
}
.login-header {
    margin-top: 5px;
    margin-bottom: 30px;
}
.login-header h2 {
    color: #2f4050;
    font-size: 18px;
    text-align: center;
    margin: 0;
    margin-bottom: 8px;
}
.login-header h3 {
    color: #2f4050;
    font-size: 15px;
    text-align: center;
    margin: 0;
}
.admin-login-notice {
    color: #ff0052;
    font-size: 17px;
    margin-top: -15px;
    font-weight: 500;
}
.admin-login-form {
    margin-top: 15px;
    margin-bottom: 18px;
}
.admin-login-form .form-group input.form-control {
    padding: 20px 15px;
    font-size: 14px;
    box-shadow: none;
}
.form-control,
.admin-login-form input.btn {
    padding: 8px 15px;
    box-shadow: none!important;
}
.login-form {
    padding: 50px 35px 50px 20px;
}
@media (max-width: 991px) {
    .login-form {
        padding: 50px 35px 50px 35px;
    }
}
.login-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-left: 15px;
}
.left-side {
    display: none;
}
.left-side:before {
    content: "";
    position: absolute;
    top: 0;
    width: 5px;
    height: 100%;
    right: 0;
    border-radius: 2px;
    background: linear-gradient(130deg,#ff7a18,#af002d 41.07%,#319197 76.05%);
}
.input-group-prepend {
    width: 36px;
}
.footer {
    background-color: rgb(0 0 0 / 65%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.copyright-left-text {
    color: #eee;
    padding: 15px;
}
.copyright-right-text {
    color: #eee;
    padding: 15px;
}
@media (max-width: 700px) {
    .footer {
        position: static;
    }
    .footer > .d-flex.justify-content-between {
        display: block!important;
        text-align: center;
    }
}