
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* Popup Notification */
        .status-popup {
            position: fixed;
            top: 50px;
            left: 50%;
            transform: translateX(-50%);
            padding: 10px 20px;
            border-radius: 10px;
            color: white;
            font-weight: bold;
            text-align: center;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            max-width: 60%;
            width: 300px;
            display: none;
        }
        
        .status-success {
            background: linear-gradient(135deg, #00b09b, #96c93d);
        }
        
        .status-warning {
            background: linear-gradient(135deg, #ff8c00, #ff4500);
        }
        
        .status-error {
            background: linear-gradient(135deg, #8B0000, #B22222);
        }
        
        .status-info {
            background: linear-gradient(135deg, #1a2a6c, #3a7bd5);
        }
        
        .close-popup {
            position: absolute;
            right: 10px;
            top: 10px;
            cursor: pointer;
            font-size: 20px;
        }
        
        /* Login Form Styling */
        .login-form-container {
            max-width: 350px;
            margin: 10px auto;
            padding: 3px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .login-form input[type="email"],
        .login-form input[type="password"] {
            width: 90%;
            padding: 16px;
            margin: 1px 0;
            border: 1px solid #3a7bd5;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .login-form input:focus {
            outline: none;
            border-color: #00d2ff;
            box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
        }
        
        .login-form input::placeholder {
            color: #a0d0ff;
        }
        
        .login-form button[type="submit"] {
            background: linear-gradient(135deg, #1a2a6c, #3a7bd5, #00d2ff);
            color: white;
            border: none;
            padding: 16px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            border-radius: 50px;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
            width: 95%;
            letter-spacing: 1px;
        }
        
        .login-form button[type="submit"]:hover {
            background: linear-gradient(135deg, #00d2ff, #3a7bd5, #1a2a6c);
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(58, 123, 213, 0.6);
        }
        
        .login-form button[type="submit"]:active {
            transform: translateY(1px);
        }
        
        .password-link {
            text-align: center;
            margin-top: 20px;
        }
        
        .password-link a {
            color: #3a7bd5;
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        
        .password-link a:hover {
            color: #00d2ff;
        }
  