/* Your CSS from the original file */
        :root {
            --bg-color: #1a2e1a; /* Dark background */
            --card-color: #027f01; /* Slightly lighter card background */
            --text-color: #e0e0e0; /* Light text */
            --input-bg: #0f610f; /* Input background */
            --input-border: #0a1128; /* Input border */
            --button-bg: #b40003; /* Accent button color */
            --button-hover-bg: #ff6681; /* Button hover color */
            --link-color: #00bcd4; /* Link color */
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--bg-color);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            color: var(--text-color);
            overflow: hidden; /* Prevent scrollbar from background animations */
        }

        .login-container {
            background-color: var(--card-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            width: 350px;
            text-align: center;
            position: relative;
            z-index: 1; /* Ensure container is above any background effects */
        }

        .login-container h2 {
            margin-top: 20px; /* Adjust spacing below logo */
            margin-bottom: 30px;
            color: var(--text-color);
            font-weight: 700;
            font-size: 2.2em; /* Make RGServe stand out more */
            letter-spacing: 1px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        /* Styling for the logo */
        .logo {
            max-width: 250px; /* Increased size significantly */
            height: auto;
            margin-bottom: 10px; /* Space between logo and heading */
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.4)); /* Subtle shadow for the logo */
        }

        .input-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 300;
            color: var(--text-color);
        }

        .input-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--input-border);
            border-radius: 5px;
            /* 💡 Changed background to white */
            background-color: white; 
            /* 💡 Changed text color to black */
            color: black; 
            font-size: 16px;
            box-sizing: border-box; /* Include padding in width */
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .input-group input:focus {
            border-color: var(--link-color);
            outline: none;
            box-shadow: 0 0 8px rgba(0, 188, 212, 0.4);
        }

        .btn-login {
            width: 100%;
            padding: 15px;
            background-color: var(--button-bg);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin-top: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }

        .btn-login:hover {
            background-color: var(--button-hover-bg);
            transform: translateY(-2px);
        }

        .forgot-password, .signup-link {
            display: block;
            margin-top: 20px;
            font-size: 14px;
        }

        .forgot-password a, .signup-link a {
            color: var(--link-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .forgot-password a:hover, .signup-link a:hover {
            text-decoration: underline;
            color: #4dd0e1; /* Slightly lighter on hover */
        }

        /* Optional: Subtle background animation */
        .background-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 0;
        }

        .background-animation::before,
        .background-animation::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
            filter: blur(80px);
        }

        .background-animation::before {
            background: linear-gradient(45deg, #00bcd4, #027f01);
            width: 300px;
            height: 300px;
            top: -50px;
            left: -50px;
            animation: moveShape1 15s infinite alternate ease-in-out;
        }

        .background-animation::after {
            background: linear-gradient(135deg, #e94560, #b40003);
            width: 400px;
            height: 400px;
            bottom: -100px;
            right: -100px;
            animation: moveShape2 20s infinite alternate ease-in-out;
        }

        @keyframes moveShape1 {
            0% { transform: translate(0, 0); }
            50% { transform: translate(100px, 100px); }
            100% { transform: translate(0, 0); }
        }

        @keyframes moveShape2 {
            0% { transform: translate(0, 0); }
            50% { transform: translate(-150px, -50px); }
            100% { transform: translate(0, 0); }
        }