.customer-login {
    min-height: 100vh;
    display: flex;
    background: #efefef;
}

/* ── Left panel: full-cover photo (same as admin login) ── */
.customer-login__left {
    width: 58%;
    position: relative;
    overflow: hidden;
    background: #1a3352;
}

.customer-login__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ── Right panel: logo + form ── */
.customer-login__right {
    width: 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 54px;
    background: #efefef;
}

.customer-login__card {
    width: 100%;
    max-width: 420px;
}

.customer-login__logo {
    text-align: center;
    margin-bottom: 22px;
}

.customer-login__title {
    text-align: center;
    margin-bottom: 28px;
    color: #111827;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.customer-field {
    margin-bottom: 14px;
}

.customer-login .form-control,
.customer-login .form-control:focus {
    height: 46px;
    border: 1.5px dashed #bfc6ce;
    border-radius: 4px;
    font-size: 15px;
    background: #fff;
    color: #2b3440;
    box-shadow: none;
}

.customer-login .form-control::placeholder {
    color: #9aa3ad;
}

.btn-customer-primary {
    background: #e8720c;
    color: #fff;
    border: 1px dashed #e8720c;
    height: 46px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    letter-spacing: 0.3px;
}

.btn-customer-primary:hover,
.btn-customer-primary:focus {
    background: #1D4D7A;
    border-color: #1D4D7A;
    color: #fff;
}

.btn-customer-outline {
    background: transparent;
    color: #e8720c;
    border: 2px dashed #e8720c;
    height: 46px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

.btn-customer-outline:hover,
.btn-customer-outline:focus {
    background: #1D4D7A;
    border-color: #1D4D7A;
    color: #fff;
}

.customer-admin-link {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: #6b7280;
}

.customer-admin-link a {
    text-decoration: none;
    font-weight: 700;
}

.customer-admin-link a:hover {
    text-decoration: underline;
}

/* .customer-panel .left-side-menu {
    width: 230px;
    background: #fff;
} 

.customer-panel .content-page {
    margin-left: 230px;
    padding-top: 50px;

}
*/

.customer-panel .card {
    border-radius: 12px;
}

.customer-stat {
    padding: 14px 18px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.customer-stat h5 {
    margin: 0;
    color: #475569;
    font-size: 14px;
}

.customer-stat p {
    margin: 8px 0 0;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

@media (max-width: 991px) {
    .customer-login {
        display: block;
    }

    .customer-login__left,
    .customer-login__right {
        width: 100%;
    }

    .customer-login__left {
        min-height: 260px;
    }

    .customer-login__title {
        font-size: 22px;
    }

    .customer-login__right {
        padding: 28px 20px;
    }
}