/* login.css */

/* Mobile view adjustments */
@media (max-width: 768px) {
    /* Logo stays top-left */
    .login-logo {
        position: absolute !important;
        top: 15px !important;
        left: 15px !important;
        height: 40px !important;
        margin: 0 !important;
        display: block;
    }

    /* Make the whole page a flex container for centering */
    .login-page {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding-top: 60px; /* Prevent overlap with logo */
    }

    /* Login box centered */
    .login-box {
        width: 90% !important;
        max-width: 400px;
        padding: 15px !important;
        margin: 0 auto !important;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
        border-radius: 10px;
    }

    /* Reduce heading size */
    .login-box h3 {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }

    /* Inputs & button full width */
    .login-box input,
    .login-box button {
        width: 100% !important;
        font-size: 14px !important;
        padding: 10px !important;
    }

    /* Footer black transparent & stacked */
    /* .footer-stats {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        background: rgba(0, 0, 0, 0.5) !important;
        border-radius: 10px;
    } */
     /* Footer black transparent fixed at bottom */
.footer-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6) !important;
    position: fixed;   /* stays at bottom */
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

    .footer-stats .stat-card {
        width: 100% !important;
        text-align: center;
        color: white !important;
    }

    .stat-number {
        font-size: 18px !important;
    }

    .stat-label {
        font-size: 12px !important;
    }
}
