        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background: radial-gradient(circle at 20% 50%, #0f172a, #020617);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 15px;
        }

        /* CONTAINER */
        .login-container {
            width: 100%;
            max-width: 400px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(12px);
        }

        /* TITLE */
        .login-container h2 {
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00ffc6, #00aaff);
            -webkit-background-clip: text;
            color: transparent;
        }

        /* INPUT */
        .input-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 15px;
        }

        .input-group label {
            font-size: 0.85rem;
            margin-bottom: 5px;
            opacity: 0.7;
        }

        .input-group input {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: #020617;
            color: #fff;
            outline: none;
        }

        .input-group input:focus {
            border-color: #00ffc6;
        }

        /* OPTIONS */
        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            margin-bottom: 15px;
        }

        .options a {
            color: #00ffc6;
            text-decoration: none;
        }

        /* BUTTON */
        .btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 25px;
            background: linear-gradient(90deg, #00ffc6, #00aaff);
            color: #000;
            font-weight: 600;
            cursor: pointer;
        }

        /* FOOTER */
        .footer-text {
            margin-top: 15px;
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.7;
        }

        .footer-text a {
            color: #00ffc6;
            text-decoration: none;
        }

        /* RESPONSIVE TWEAKS */
        @media(min-width:768px) {
            .login-container {
                padding: 30px;
            }
        }