/* Apply modern, premium font globally to all elements */
body, input, select, button, textarea, label, span, div, p, h1, h2, h3 {
    font-family: 'Outfit', 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

/* Disable all text-transform uppercase rules globally for these wizard pages */
        * {
            box-sizing: border-box !important;
            text-transform: none !important;
        }

        .install-body, .update-body {
            opacity: 1 !important;
            background-color: #090412;
            background: radial-gradient(circle at 50% 20%, #170d2c 0%, #090412 70%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 50px 20px;
            color: #f3f0f7;
        }
        
        .install-container, .update-container {
            background: rgba(18, 11, 30, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 45px 35px;
            border-radius: 28px;
            width: 100%;
            max-width: 680px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 50px rgba(168, 85, 247, 0.15);
            border: 1px solid rgba(168, 85, 247, 0.25);
            text-align: center;
        }
        
        .install-container h1, .update-container h1 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 2.1rem;
            color: #ffffff;
            margin-bottom: 8px;
        }
        
        .install-container p.subtitle, .update-container p.subtitle {
            font-size: 1.0rem;
            color: #9f93b0;
            margin-bottom: 30px;
            line-height: 1.5;
        }
        
        .form-group {
            text-align: left;
            margin-bottom: 18px;
        }
        
        .form-group label {
            font-size: 0.9rem;
            
            letter-spacing: 1px;
            color: #b0a5c4;
            margin-bottom: 6px;
            display: block;
            font-weight: 600;
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(168, 85, 247, 0.2);
            border-radius: 10px;
            font-size: 1.05rem;
            outline: none;
            background: rgba(10, 6, 18, 0.5);
            color: #f3f0f7;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus, .form-group select:focus {
            border-color: #a855f7;
            background: rgba(10, 6, 18, 0.7);
            box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
        }
        
        .form-group select option {
            background-color: #120b20;
            color: #f3f0f7;
        }
        
        .form-row {
            margin-bottom: 0;
        }
        
        .install-btn, .update-btn {
            width: 100%;
            margin-top: 15px;
            padding: 14px;
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff !important;
            border-radius: 9999px;
            background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%) !important;
            border: none !important;
            box-shadow: 0 4px 15px rgba(168, 85, 247, 0.35) !important;
            cursor: pointer;
            transition: all 0.3s ease !important;
        }
        
        .install-btn:hover, .update-btn:hover {
            opacity: 0.95 !important;
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5) !important;
            transform: translateY(-1px) !important;
        }

        .install-btn:disabled, .update-btn:disabled {
            background: #2a203a !important;
            color: #7c6f8a !important;
            box-shadow: none !important;
            cursor: not-allowed;
            transform: none !important;
        }
        
        .error-message {
            background-color: rgba(239, 68, 68, 0.1);
            color: #fca5a5;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 20px;
            display: none;
            border: 1px solid rgba(239, 68, 68, 0.3);
            text-align: left;
            line-height: 1.4;
        }
        
        .success-message {
            background-color: rgba(16, 185, 129, 0.1);
            color: #a7f3d0;
            padding: 14px;
            border-radius: 10px;
            font-size: 0.95rem;
            margin-bottom: 20px;
            display: none;
            border: 1px solid rgba(16, 185, 129, 0.3);
            text-align: center;
        }
        
        .divider {
            height: 1px;
            background: rgba(168, 85, 247, 0.15);
            margin: 25px 0;
        }
        
        .section-tag {
            font-size: 0.95rem;
            color: #a855f7;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: left;
            
            letter-spacing: 1.5px;
        }
    
        /* iSecret Corporate Brand Logo Styling */
        .brand-logo {
            font-family: 'Outfit', sans-serif !important;
            font-size: 1.6rem !important;
            font-weight: 900 !important;
            color: #ffffff !important;
            display: inline-flex !important;
            align-items: baseline !important;
            gap: 4px !important;
            text-decoration: none !important;
        }

        .logo-i-wrap {
            position: relative;
            display: inline-block;
            color: #a855f7 !important;
        }

        .logo-i-dot {
            position: absolute;
            top: -0.08em;
            left: 50%;
            transform: translateX(-50%);
            width: 0.45em;
            height: 0.45em;
            display: block;
            line-height: 0;
            animation: logoDotPulse 1.8s infinite ease-in-out;
        }

        .logo-i-dot svg {
            width: 100%;
            height: 100%;
            fill: #a855f7 !important;
            filter: drop-shadow(0 0 3px rgba(168, 85, 247, 0.6)) !important;
        }

        @keyframes logoDotPulse {
            0% {
                transform: translateX(-50%) scale(0.9);
                opacity: 0.85;
            }
            50% {
                transform: translateX(-50%) scale(1.3);
                opacity: 1;
            }
            100% {
                transform: translateX(-50%) scale(0.9);
                opacity: 0.85;
            }
        }