 body {
        /* background: linear-gradient(to right, #6a11cb, #2575fc); */
        min-height: 100vh;
        font-family: 'Open Sans', sans-serif;
        display: flex;
        flex-direction: column;

        /* Gradient + Background Image */
    /* background:  */
        /* linear-gradient(to right, #6a11cb, #2575fc), */
        /* url('../img/bg1.png') no-repeat center center; */
         /* linear-gradient(
        to bottom,
        #ffffff,
        #75e3e8,
        #3cb878,
        #61b441,
        #3a6429
    ); */

    /* background: linear-gradient(
        to bottom,
        #ffffff,
        #8c9495a6,
        #35dc8680,
        #8c9495a6,
        #ffffff
    ); */



      background: 
        linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.1)),
        url('../img/bg2.png') no-repeat center center;

    
        /* background: linear-gradient(to right,  #3a6429,  #61b441, #3cb878, #61b441, #3a6429); */

        

    background-size: cover;
    }

    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: center;
        padding: 10px 20px;
        /* background: rgba(255, 255, 255, 0.95); */
        background: linear-gradient(to right, #ffffff, #75e3e8, #3cb878, #61b441, #3a6429);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    /* Logo */
    .top-bar .logo {
        height: clamp(34px, 5vw, 40px);
    }

    /* Title always centered relative to viewport */
    .portal-title {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: clamp(1.2rem, 6vw, 1.8rem);
        font-weight: 600;
        margin: 0;
        color: #333;
        text-align: center;
    }

    /* Login Card */
    .login-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        padding-top: 60px;
        /* space for top-bar */
        padding-bottom: 80px;
        /* space for footer */
    }

    .card {
        border-radius: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        padding: 40px 35px;
        width: 100%;
        max-width: 480px;
        /* Broader card */
        background-color: #ffffffee;
    }

    .card-title {
        font-weight: 600;
        color: #333;
    }

    .btn-primary {
        background-color: #6a11cb;
        border: none;
    }

    .btn-primary:hover {
        background-color: #2575fc;
    }

    .help-block {
        color: #ff0000;
    }

    a {
        text-decoration: none;
    }

    /* Footer */
    .footer {
        width: 100%;
        /* background: rgba(255, 255, 255, 0.95); */
        /* background: linear-gradient(to top, #ffffff, #88e3e8, #3cb878, #61b441, #3a6429); */
        background: linear-gradient(to right, #ffffff, #75e3e8, #3cb878, #61b441, #3a6429);
        padding: 10px 30px;
        text-align: center;
        font-size: 0.8rem;
        color: #333;
        box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
        position: fixed;
        bottom: 0;
    }

    @media (max-width: 991px) {
        .top-bar {
            justify-content: flex-start;
            position: relative;
        }

        .portal-title {
            position: relative;
            left: unset;
            transform: unset;
            margin-left: 10px;
            font-size: clamp(1.2rem, 4vw, 1.4rem);
            text-align: left;
            display: none;
        }

        .footer {
            font-size: 0.8rem;
        }

        .login-wrapper {

            padding-top: 10px;
            /* space for top-bar */
        }

        .card {
            width: 96%;
        }
    }