/* General Reset and Font */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        /* Background Styling */
        .background-container {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, 
                #f0f8ff, /* Light Blue/White */
                #e6e6fa, /* Lavender */
                #dda0dd, /* Plum */
                #9370db, /* Medium Purple */
                #87cefa /* Light Sky Blue */
            );
            background-size: 400% 400%;
            animation: gradientAnimation 15s ease infinite;
        }

        @keyframes gradientAnimation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Logo Styling */
        .logo {
            width: 250px;
            height: 150px;
            object-fit: contain;
            margin-bottom: 20px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        /* Login Card/Form Container */
        .login-card {
            background-color: rgba(255, 255, 255, 0.90);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            width: 100%;
            max-width: 350px;
            text-align: center;
        }

        /* Sign In Heading */
        .login-card h2 {
            font-size: 24px;
            color: #333;
            margin-bottom: 30px;
        }

        /* Input Group Styling for icons and input fields */
        .input-group {
            display: flex;
            align-items: center;
            border-bottom: 1px solid #ccc;
            margin-bottom: 25px;
            padding-bottom: 5px;
        }

        .input-group .icon, .input-group .show-password {
            color: #a0a0a0;
            margin-right: 15px;
            font-size: 18px;
        }
        
        /* NEW CSS: Add pointer to the eye icon to show it's clickable */
        .input-group .show-password {
            margin-right: 0; /* Remove right margin from password icon */
            cursor: pointer;
        }


        .input-group input {
            flex-grow: 1;
            border: none;
            outline: none;
            padding: 10px 0;
            font-size: 16px;
            background: none;
        }

        /* Remove default focus border */
        .input-group input:focus {
            border-color: none;
            box-shadow: none;
        }

        /* Login Button Styling */
        .login-btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 15px;
            background: linear-gradient(to right, #9370DB, #C6A2E8); 
            box-shadow: 0 5px 15px rgba(147, 112, 219, 0.4);
            transition: background-color 0.3s ease;
        }

        .login-btn:hover {
            background: linear-gradient(to right, #7B5CD6, #B38FDF);
        }