* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

body, html {
    height: 100%;
    width: 100%;
}

/* The Immersive Background */
body {
    background-color: #ffffff; 
    background-image: 
        /* Lightened the tint from 0.85/0.95 down to 0.65/0.75 */
        linear-gradient(rgba(17, 24, 39, 0.65), rgba(17, 24, 39, 0.75)), 
        url('../images/mlm_logo.jpg'); 
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, 650px; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Premium Glassmorphism Card */
.login-card {
    background: rgba(255, 255, 255, 0.08); /* Barely visible white tint */
    backdrop-filter: blur(16px); /* Heavy frosted glass blur */
    -webkit-backdrop-filter: blur(16px); /* For Safari support */
    border: 1px solid rgba(255, 255, 255, 0.15); /* Subtle glowing edge */
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); /* Deep drop shadow */
}

.login-card h1 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.login-card p {
    color: #d1d5db;
    font-size: 15px;
    margin-bottom: 40px;
}

/* Premium Google Button */
.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background-color: #ffffff;
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    background-color: #f9fafb;
    transform: translateY(-2px); /* Slight lift on hover */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.google-btn:active {
    transform: translateY(0); /* Press down effect */
}

.google-icon {
    width: 22px;
    height: 22px;
}

/* Premium Copyright Footer */
.login-footer {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.4); /* Very subtle, semi-transparent white */
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    pointer-events: none; /* Prevents text cursor from interfering with the background */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 600px) {
    body {
        /* Shrink the background logo from 650px to 320px for mobile */
        background-size: cover, 520px; 
    }

    .container {
        padding: 16px; /* Reduces the outer container padding */
    }

    .login-card {
        padding: 40px 24px; /* Thinner inside padding to give text more room */
        border-radius: 16px; /* Slightly softer corners for mobile */
    }

    .login-card h1 {
        font-size: 22px; /* Scaled down slightly to fix the awkward wrapping */
    }

    .login-card p {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .login-footer {
        font-size: 11px; /* Smaller text to fit the screen better */
        padding: 0 24px; /* Adds breathing room on the left and right */
        bottom: 16px; /* Lifts it slightly further away from the bottom edge */
        line-height: 1.5; /* Makes the stacked text easier to read */
    }
}