@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Tajawal:wght@200;300;400;500;700;800;900&family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');    :root {
            --primary-color: #FF7A00;
            --primary-light: #FF9A3D;
            --primary-dark: #E56A00;
            --secondary-color: #333333;
            --accent-color: #00A8FF;
            --text-color: #444444;
            --light-gray: #F8F9FA;
            --gradient: linear-gradient(135deg, #FF7A00 0%, #FF9A3D 100%);
            --shadow: 0 10px 30px rgba(255, 122, 0, 0.15);
            --transition: all 0.3s ease;
            --radio: 0.8;
        }
        
        ::selection {
            background-color: #ff6600;
            color: white;
        }
        
        ::-moz-selection {
            background-color: #E55627;
            color: white;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background:#ffffff ;
            font-family: 'Tajawal', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
            height: 100vh;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        

        .main-right {
            width: 50%;
            height: 100vh;
            background-color: var(--primary-color);
            display: flex;
            top: 0;
            align-items: center;
            justify-content: center;
        }
        .main-right img {
            height: calc(481 * var(--radio));
            align-items: center;
           width: 50%;
           margin: 0 auto;
           
        }
        
        .container {
            width: 100%;
            max-width: 500px;
            margin-right: 100px;
            animation: fadeIn 0.8s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .logo-mr{
            width: 50%;
        }
        .header {
            color: rgb(0, 0, 0);
            padding: 35px 30px 0 35px;
            border-radius: 15px 15px 0 0;
            position: relative;
            overflow: hidden;
        }
        
        
        .header h1 {
            font-size: 24px;
            font-family: "Rubik", sans-serif;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }
        
        .header p {
            font-size: 16px;
            font-family: "Zain", sans-serif;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }
        
        .form-card {
            padding: 35px 30px;
            border: none;
            position: relative;
        }
        
        .form-title {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 700;
            text-align: center;
            position: relative;
            font-size: 24px;
        }
        
        .form-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--gradient);
            margin: 15px auto;
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .form-card:hover .form-title::after {
            width: 80px;
        }
        
        .form-group {
            margin-bottom: 25px;
            position: relative;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary-color);
            transition: var(--transition);
        }
        
        .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 16px;
            transition: var(--transition);
            background-color: #f9f9f9;
            font-family: 'Tajawal', sans-serif;
        }
        
        .form-input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
            background-color: white;
        }
        
        .form-input:focus + .form-label {
            color: var(--primary-color);
        }
        
        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #aaa;
            transition: var(--transition);
        }
        
        .form-input:focus ~ .input-icon {
            color: var(--primary-color);
        }
        
        .btn {
            display: block;
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(50, 50);
                opacity: 0;
            }
        }
        
        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 122, 0, 0.4);
        }
        
        .btn-primary:active {
            transform: translateY(-1px);
        }
        
        .alert {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            display: none;
            animation: slideIn 0.3s ease;
            position: relative;
            padding-right: 50px;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .alert-error {
            background-color: #ffebee;
            color: #c62828;
            border-left: 4px solid #c62828;
        }
        
        .alert-success {
            background-color: #e8f5e9;
            color: #2e7d32;
            border-left: 4px solid #2e7d32;
        }
        
        .alert .close-btn {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: inherit;
            opacity: 0.7;
        }
        
        .alert .close-btn:hover {
            opacity: 1;
        }
        
        .options {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;

            margin-top: 25px;
            gap: 10px;
        }
        
        .option-link {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .option-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }
        
        .data-preview {
            margin-top: 30px;
            padding: 20px;
            background-color: var(--light-gray);
            border-radius: 12px;
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .data-preview h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            text-align: center;
        }
        
        .data-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        
        .data-item:last-child {
            border-bottom: none;
        }
        
        .data-label {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
        .debug-info {
            margin-top: 20px;
            padding: 15px;
            background-color: #f5f5f5;
            border-radius: 8px;
            font-size: 14px;
            display: none;
        }
        
        .footer {
            margin-top: 30px;
            text-align: center;
            color: #777;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0;
            }
            
            .header {
                padding: 25px 20px;
            }
            
            .header h1 {
                font-size: 24px;
            }
            
            .form-card {
                padding: 25px 20px;
            }
            
            .options {
                flex-direction: column;
                align-items: center;
            }
            
            .option-link {
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 480px) {
            body {
                padding: 10px;
                flex-direction: column;
            }
            .container{
                margin: 200px 0 0 0;
            }
            .main-right{
                position: absolute;
                width: 100%;
                height: 30%;
                
            }
            .main-right img{
                width: 30%;
            }
            .logo-mr{
                display: none;
            }
            
            .header h1 {
                font-size: 22px;
            }
            
            .form-title {
                font-size: 20px;
            }
            
            .btn {
                padding: 14px;
                font-size: 16px;
            }
            .footer{
                padding: 20px 0;
            }
        }