/* XHOST page styles: login */

* { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --bg-body: #080e1a;
            --bg-card: rgba(18, 30, 48, 0.7);
            --border-subtle: rgba(56, 78, 110, 0.4);
            --border-light: rgba(99, 102, 241, 0.35);
            --text-primary: #edf2f7;
            --text-secondary: #b8c9e8;
            --text-muted: #7a94b8;
            --accent-1: #6366f1;
            --accent-2: #8b5cf6;
            --accent-3: #22d3ee;
            --red: #f87171;
            --shadow-card: 0 16px 40px -12px rgba(0, 0, 0, 0.8);
            --radius-card: 20px;
            --radius-element: 12px;
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        body {
            background: var(--bg-body);
            color: var(--text-primary);
            font-family: 'Inter', system-ui, sans-serif;
            padding: 28px 24px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        .box {
            background: var(--bg-card);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            max-width: 400px;
            width: 100%;
            box-shadow: var(--shadow-card);
            transition: var(--transition);
        }
        .box:hover { border-color: var(--border-light); }
        h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h2 i { color: var(--accent-3); }
        .error {
            background: rgba(248,113,113,0.1);
            border: 1px solid rgba(248,113,113,0.2);
            color: var(--red);
            padding: 10px 16px;
            border-radius: var(--radius-element);
            margin-bottom: 20px;
        }
        input {
            width: 100%;
            padding: 12px 16px;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-element);
            color: var(--text-primary);
            font-size: 14px;
            transition: var(--transition);
            outline: none;
            margin-bottom: 16px;
        }
        input:focus {
            border-color: var(--accent-1);
            background: rgba(255,255,255,0.06);
            box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
        }
        .btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
            border: none;
            border-radius: var(--radius-element);
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(99,102,241,0.25);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(99,102,241,0.35);
        }
