 body {
            background: url('../../img/me_portal_login_img.png') no-repeat center center fixed;
            background-size: cover;
            font-family: 'Poppins', sans-serif;
        }
        body::before {
            content: "";
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
            z-index: 0;
        }
        .portal-heading {
            font-size: 2rem;
            font-weight: 600;
            text-align: center;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 123, 255, 0.8),
                         0 0 20px rgba(0, 123, 255, 0.6),
                         0 0 40px rgba(0, 123, 255, 0.4);
            margin-bottom: 30px;
            z-index: 1;
            position: relative;
        }
        .login-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            z-index: 1;
            color: #fff;
        }
        .login-card label {
            color: #f1f1f1;
        }
.nav-pills .nav-link.active {
    background-color: black !important;
    color: white !important;
    border-color: black !important;
}
.nav-pills .nav-link {
    background-color: transparent !important;
    transition: all 0.2s ease-in-out;
}
.nav-pills .nav-link:hover {
    background-color: black;
    color: white;
}