body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url("../../Assets/images/bg.jpg") center/cover no-repeat;
    opacity: 0.4; /* 0.4 as requested */
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--light);
    opacity: 0.15; /* optional subtle tint; remove if not needed */
    z-index: -1;
}

.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    overflow: hidden;
}

.login-header {
    background: var(--primary);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
    .brand-logo img {
        max-width: 75%; max-height: 75%;
    }
