* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

        body {
            justify-content: center;
            background-size: 400% 400%;
            animation: gradient 10s ease infinite;
        }

        

        .login-card {
            background: rgba(255, 255, 255, 0.15);
            
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            width: 350px;
            margin: 0px auto;
            text-align: center;
            justify-content: center;
            color: white;
        }

        h2 { margin-bottom: 30px; font-weight: 300; letter-spacing: 2px; }

        .input-group { margin-bottom: 20px; text-align: left; }

        input {
            width: 250px;
            padding: 12px;
            border: bevel;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.6);
            color: black;
            outline: none;
            transition: 0.3s;
        }

        input::placeholder { color: #aaa; }

        input:focus { background: rgba(255, 255, 255, 0.3); box-shadow: 0 0 10px rgba(255,255,255,0.2); }

        button {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: #6c5ce7;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 5px;
        }

        button:hover { background: #5849be; transform: translateY(-1px); }
        
        .footer-text { margin-top: 20px; font-size: 10px; opacity: 0.8; }
    </style>