		:root {
            --primary-color: #E94D1A; /* Updated brand color */
            --secondary-color: #333;
            --form-width: 800px; /* Consistent width for form and banner */
            --banner-height: 200px; /* Reduced banner height */
        }
        
        
        @media (max-width: 850px) {
        :root {
            --form-width: 95%;
            --banner-height: 150px;
        }
        
        .form-container {
            padding: 20px;
        }
        }
        
        
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8f9fa;
        }
        
        .rtl {
            direction: rtl;
            text-align: right;
        }
        
        /* Banner Slider - Updated dimensions */
        .banner-slider {
            width: var(--form-width);
            height: var(--banner-height);
            overflow: hidden;
            position: relative;
            border-radius: 10px;
            margin: 0 auto 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .banner-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }
        
        .banner-slide.active {
            opacity: 1;
        }
        
        /* Form Container - Matches banner width */
        .form-container {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            width: var(--form-width);
            margin: 0 auto;
        }
        
        
        .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(233, 77, 26, 0.25);
        
            
        }
        
        /* Updated button styles with new brand color */
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        
        .btn-primary:active {
        background-color: #b83812;
        border-color: #b83812;
        transform: translateY(1px);
        }
        
        .btn-primary:focus {
            box-shadow: 0 0 0 0.25rem rgba(233, 77, 26, 0.5);
        }
        
        
        .btn-primary:hover {
            background-color: #d14316;
            border-color: #d14316;
            color: white;
        }
        
        .btn-outline-secondary {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        
        .btn-outline-secondary:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Instructions as clickable link */
        .instructions-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            margin-bottom: 20px;
            display: inline-block;
            cursor: pointer;
        }
        
        .instructions-link:hover {
            text-decoration: underline;
        }
        
        /* Modal for instructions */
        .instructions-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .instructions-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
        }
        
        .close-instructions {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        .rtl .close-instructions {
            right: auto;
            left: 15px;
        }
        
        
        
        
        /* Language Switcher - Enhanced */
        .language-switcher {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            gap: 10px;
        }
        
        .language-btn {
            background: white;
            border: 2px solid var(--primary-color);
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .language-btn.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .language-btn i {
            font-size: 1.2em;
        }
        
        /* Logo Centering */
        .brand-logo-container {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .brand-logo {
            max-height: 80px;
            transition: transform 0.3s;
        }
        
        .brand-logo:hover {
            transform: scale(1.05);
        }
        
        
        
        .success-modal {
            display: none; /* Start hidden */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            z-index: 2000; /* Higher than other elements */
            justify-content: center;
            align-items: center;
            position: relativeك
        }
    
        .success-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: bounceIn 0.6s;
        }