body.login-body {
    margin: 0;
    padding: 0 0 40px 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fb;
    overflow-x: hidden;
    min-height: 100vh;
}

.login-body .container-fluid {
    min-height: calc(100vh - 40px);
    padding-left: 0;
    padding-right: 0;
}

.login-body .row.g-0 {
    min-height: calc(100vh - 40px);
}

.login-left {
    min-height: calc(100vh - 40px);
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-card {
    width: 100%;
    max-width: 430px;
    background: #fff;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.login-logo {
    width: 100px;
    margin-bottom: 15px;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
}

.login-subtitle {
    color: #6b7280;
}

.custom-input-group {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #dbe3ec;
}

.custom-input-group .input-group-text {
    background: #fff;
    border: none;
}

.custom-input-group .form-control,
.custom-input-group .form-select {
    border: none;
    box-shadow: none;
    height: 54px;
}

.btn-login {
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #4338ca);
    color: white;
    border: none;
    font-weight: 600;
}

.btn-login:hover,
.btn-login:focus,
.btn-login:active {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
    border-color: #38bdf8 !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 .2rem rgba(56, 189, 248, .25) !important;
}

.btn-login:hover i,
.btn-login:focus i,
.btn-login:active i,
.btn-login:hover span,
.btn-login:focus span,
.btn-login:active span {
    color: #ffffff !important;
}

.btn-store {
    height: 54px;
    border-radius: 14px;
    font-weight: 600;
}

.sales-panel {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 40px);
    background: linear-gradient(135deg, #eef4ff, #ffffff);
}

.sales-image-container {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sales-image {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;

    transition: transform .5s ease,
                opacity .5s ease;

    animation: floatImage 5s ease-in-out infinite;
}

.footerLogin {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 40px;
    padding: 8px 18px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    z-index: 1050;
    box-shadow: 0 -4px 18px rgba(15, 23, 42, 0.06);
}

.footerLogin a {
    color: #2563eb;
    font-weight: 700;
}

.sales-panel:hover .sales-image {
    transform: scale(1.03);
}

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width:991px){

    .sales-panel{
        display:none !important;
    }

    .login-left{
        min-height: calc(100vh - 40px);
        width:100%;
        padding:20px;
    }

    .login-card{
        max-width:100%;
        padding:30px;
    }

    .footerLogin {
        justify-content: center;
        flex-wrap: wrap;
        min-height: 46px;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

}
