   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
 
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            background: #25301D;
        }
 
        /* Background Image */
        .background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 2500px;
            background-image: url('../images/HomepageEN.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: top center;
            z-index: -1;
            transition: all 0.5s ease;
        }
 
        .background-overlay.ar {
            background-image: url('../images/HomepageAR.png');
        }
 
        .background-overlay.en {
            background-image: url('../images/HomepageEN.png');
        }
 
         /* Mobile Background Images */
        @media (max-width: 768px) {
            .background-overlay {
                background-image: url('../images/ph-en.png');
            }
 
            .background-overlay.ar {
                background-image: url('../images/ph-ar.png');
            }
 
            .background-overlay.en {
                background-image: url('../images/ph-en.png');
            }
        }
 
        .hide {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.5s ease;
            pointer-events: none;
        }
 
        .bgScroll {
            position: absolute;
        }
 
        /* Language Switcher */
        .language-switcher {
            position: fixed;
            top: 30px;
            right: 30px;
            z-index: 1000;
        }
 
        .lang-btn {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            color: white;
            font-size: 18px;
            cursor: pointer;
            padding: 12px 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
 
        .lang-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }
 
        .lang-dropdown {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            margin-top: 10px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            min-width: 150px;
            border-radius: 15px;
            overflow: hidden;
            animation: dropdownFadeIn 0.3s ease;
        }
 
        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        .lang-dropdown a {
            color: #333;
            padding: 15px 20px;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            font-weight: 500;
        }
 
        .lang-dropdown a:hover {
            background:#25301D;
            color: #E1DDC4;
            transform: translateX(0px);
        }
 
        .lang-dropdown.show {
            display: block;
        }
 
        /* Main Container */
        .main-container {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }
 
        .form-container {
            background: #E1DDC4;
            border-radius: 25px;
            padding: 50px;
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.2);
            width: 100%;
            max-width: 500px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
 
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: #25301D;
        }
 
        .form-container:hover {
            transform: translateY(-5px);
            box-shadow:
                0 35px 60px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.3);
        }
 
        /* Header */
        .header {
            text-align: center;
            margin-bottom: 40px;
        }
 
        .header h1 {
            color: #25301D;
            font-size: 3em;
            margin-bottom: 10px;
            font-weight: 700;
        }
 
        .header .subtitle {
            color: #25301D;
            font-size: 1.2em;
            margin-bottom: 30px;
        }
 
        /* Form Styling */
        .input-group {
            margin-bottom: 30px;
            position: relative;
        }
 
        .input-field {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e8ecf0;
            border-radius: 15px;
            font-size: 1.1em;
            font-family: inherit;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.8);
            outline: none;
        }
 
        .input-field:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
            transform: translateY(-2px);
        }
 
        .input-label {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #25301D;
            font-size: 1.1em;
            font-weight: 500;
            transition: all 0.3s ease;
            pointer-events: none;
            background: white;
            padding: 0 8px;
        }
 
        .input-field:focus+.input-label,
        .input-field:not(:placeholder-shown)+.input-label {
            top: 0;
            font-size: 0.9em;
            color: #25301D;
            font-weight: 600;
        }
 
        /* Submit Button */
        .submit-button {
            width: 100%;
            padding: 18px;
            background: #25301D;
            color: #fff;
            border: none;
            border-radius: 15px;
            font-size: 1.2em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            overflow: hidden;
        }
 
        .submit-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }
 
        .submit-button:hover::before {
            left: 100%;
        }
 
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }
 
        .submit-button:active {
            transform: translateY(-1px);
        }
 
        .submit-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
 
        .submit-button .button-text {
            position: relative;
            z-index: 1;
        }
 
        /* Status Message */
        .status-message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
            font-weight: 500;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
 
        .status-message.show {
            opacity: 1;
            transform: translateY(0);
        }
 
        .status-message.success {
            background: rgba(76, 175, 80, 0.1);
            color: #2e7d32;
            border: 1px solid rgba(76, 175, 80, 0.3);
        }
 
        .status-message.error {
            background: rgba(244, 67, 54, 0.1);
            color: #c62828;
            border: 1px solid rgba(244, 67, 54, 0.3);
        }
 
        /* Loading Animation */
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top: 2px solid white;
            animation: spin 1s linear infinite;
            margin-right: 10px;
        }
 
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
 
        /* Responsive Design */
        @media (max-width: 768px) {
            .form-container {
                padding: 30px 25px;
                margin: 20px;
            }
 
            .header h1 {
                font-size: 2.5em;
            }
 
            .language-switcher {
                top: 20px;
                right: 20px;
            }
        }
 
        /* RTL Support */
        [dir="rtl"] .input-label {
            left: auto;
            right: 20px;
        }
 
        [dir="rtl"] .lang-dropdown a:hover {
            transform: translateX(0px);
        }