        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background: #0f1117;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100dvh;
            font-family: 'Segoe UI', system-ui, sans-serif;
            padding: 20px;
			overflow: clip;
        }
        .login-box {
            background: #1a1d27;
            border: 1px solid #2a2d3a;
            padding: 40px 32px;
            border-radius: 16px;
            width: 100%;
            max-width: 360px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }
        .login-box h2 {
            text-align: center;
            color: #e2e8f0;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 28px;
            letter-spacing: 0.3px;
        }
        label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 8px;
        }
        input[type="password"] {
            width: 100%;
            padding: 12px 14px;
            background: #0f1117;
            border: 1px solid #2a2d3a;
            border-radius: 8px;
            font-size: 15px;
            color: #e2e8f0;
            outline: none;
            transition: border-color 0.2s;
        }
        input[type="password"]:focus { border-color: #22c55e; }
        button {
            margin-top: 18px;
            width: 100%;
            padding: 13px;
            background: #22c55e;
            color: #0f1117;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s;
            -webkit-tap-highlight-color: transparent;
        }
        button:hover, button:active { background: #16a34a; }
        .error {
            margin-top: 14px;
            padding: 10px 14px;
            background: rgba(239,68,68,0.12);
            color: #fca5a5;
            border: 1px solid rgba(239,68,68,0.3);
            border-radius: 8px;
            font-size: 13px;
            text-align: center;
        }