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

        body {
            font-family: 'Public Sans', sans-serif;
            direction: rtl;
            background: linear-gradient(135deg, #f6f7f8 0%, #e9ecef 100%);
            min-height: 100vh;
            padding: 1.5rem 1rem;
        }

        .container {
            max-width: 640px;
            margin: 0 auto;
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            border: 1px solid #e2e8f0;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #f1f5f9;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .icon-badge {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: rgba(19, 127, 236, 0.1);
            color: #137fec;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .store-name {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1e293b;
        }

        .branch-name {
            font-size: 0.75rem;
            color: #64748b;
        }

        .customer-id {
            font-size: 0.875rem;
            color: #94a3b8;
            font-weight: 500;
        }

        .main-content {
            padding: 1.5rem;
        }

        .title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.25rem;
        }

        .subtitle {
            font-size: 0.875rem;
            color: #64748b;
            margin-bottom: 1.5rem;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 0.5rem;
            border: 1px solid #f1f5f9;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 640px) {
            .info-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .info-field {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .info-field.tz-input {
            grid-column: span 2;
        }

        @media (min-width: 640px) {
            .info-field.tz-input {
                grid-column: span 1;
            }
        }

        .info-label {
            font-size: 0.75rem;
            color: #64748b;
        }

        .info-value {
            font-weight: 500;
            color: #1e293b;
        }

        .input-field {
            width: 100%;
            padding: 0.5rem 0.75rem;
            border: 1px solid #cbd5e1;
            border-radius: 0.25rem;
            font-size: 1rem;
            font-weight: 500;
            color: #1e293b;
            background: white;
        }

        .input-field:focus {
            outline: none;
            border-color: #137fec;
            box-shadow: 0 0 0 3px rgba(19, 127, 236, 0.1);
        }

        .required {
            color: #ef4444;
        }

        .legal-section {
            margin-bottom: 1.5rem;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #137fec;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .legal-text {
            height: 10rem;
            overflow-y: auto;
            padding: 1rem;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            line-height: 1.6;
            color: #475569;
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
        }

        .legal-text::-webkit-scrollbar {
            width: 8px;
        }

        .legal-text::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 4px;
        }

        .legal-text::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }

        .legal-text::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        .legal-text ul {
            list-style: disc;
            margin-right: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .legal-text p {
            margin-bottom: 0.75rem;
        }

        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .checkbox-item {
            display: flex;
            align-items: start;
            gap: 0.75rem;
            cursor: pointer;
        }

        .checkbox-wrapper {
            position: relative;
            padding-top: 0.25rem;
        }

        .checkbox {
            width: 1.25rem;
            height: 1.25rem;
            border: 2px solid #cbd5e1;
            border-radius: 0.25rem;
            cursor: pointer;
            appearance: none;
            background: white;
            transition: all 0.2s;
        }

        .checkbox:checked {
            background: #137fec;
            border-color: #137fec;
        }

        .checkbox:hover {
            border-color: #137fec;
        }

        .checkbox-label {
            flex: 1;
            user-select: none;
        }

        .checkbox-title {
            font-weight: 500;
            color: #1e293b;
            margin-bottom: 0.25rem;
        }

        .checkbox-description {
            font-size: 0.875rem;
            color: #64748b;
        }

        .optional {
            font-size: 0.75rem;
            color: #94a3b8;
            font-weight: 400;
        }

        .privacy-link {
            color: #137fec;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            margin-right: 2rem;
        }

        .privacy-link:hover {
            text-decoration: underline;
        }

        .signature-section {
            margin-top: 1rem;
        }

        .signature-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .signature-title {
            font-size: 0.875rem;
            font-weight: 700;
            color: #1e293b;
        }

        .clear-button {
            background: none;
            border: none;
            color: #ef4444;
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            transition: color 0.2s;
        }

        .clear-button:hover {
            color: #dc2626;
        }

        .signature-canvas-wrapper {
            position: relative;
            height: 12rem;
            border: 2px dashed #cbd5e1;
            border-radius: 0.75rem;
            background: #f8fafc;
            overflow: hidden;
            cursor: crosshair;
            transition: border-color 0.2s;
        }

        .signature-canvas-wrapper:hover {
            border-color: rgba(19, 127, 236, 0.5);
        }

        .signature-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
            user-select: none;
        }

        .placeholder-text {
            font-size: 3.75rem;
            color: #e2e8f0;
            opacity: 0.5;
            font-style: italic;
        }

        .signature-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .signature-watermark {
            position: absolute;
            bottom: 0.5rem;
            left: 0.5rem;
            font-size: 0.625rem;
            color: #cbd5e1;
            pointer-events: none;
            user-select: none;
        }

        .footer {
            padding: 1.5rem;
            border-top: 1px solid #f1f5f9;
            background: #f8fafc;
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.875rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-reject {
            flex: 1;
            background: transparent;
            border: 1px solid #cbd5e1;
            color: #475569;
        }

        .btn-reject:hover:not(:disabled) {
            background: white;
        }

        .btn-submit {
            flex: 2;
            background: #137fec;
            color: white;
            box-shadow: 0 10px 15px -3px rgba(19, 127, 236, 0.25);
        }

        .btn-submit:hover:not(:disabled) {
            background: rgba(19, 127, 236, 0.9);
            box-shadow: 0 10px 15px -3px rgba(19, 127, 236, 0.4);
        }

        .background-decoration {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .decoration-circle-1 {
            position: absolute;
            top: -20%;
            right: -10%;
            width: 50%;
            height: 50%;
            background: rgba(19, 127, 236, 0.05);
            border-radius: 50%;
            filter: blur(60px);
        }

        .decoration-circle-2 {
            position: absolute;
            top: 40%;
            left: -10%;
            width: 40%;
            height: 40%;
            background: rgba(96, 165, 250, 0.05);
            border-radius: 50%;
            filter: blur(60px);
        }
		
				/**POPUP VALIDATION*/
		
		.modal-overlay {
			position: fixed;
			inset: 0;
			background: rgba(0, 0, 0, 0.55);
			display: none;
			align-items: center;
			justify-content: center;
			z-index: 9999;
		}

		.modal-overlay.show {
			display: flex;
		}

		.modal-box {
			background: #ffffff;
			border-radius: 16px;
			padding: 30px 24px;
			width: 90%;
			max-width: 380px;
			text-align: center;
			box-shadow: 0 20px 50px rgba(0,0,0,0.25);
			animation: modalIn 0.35s ease;
		}

		.modal-icon {
			color: #22c55e;
			margin-bottom: 12px;
		}

		.modal-icon svg {
			width: 60px;
			height: 60px;
		}

		.modal-box h2 {
			font-size: 22px;
			margin-bottom: 8px;
		}

		.modal-box p {
			color: #555;
			font-size: 15px;
			margin-bottom: 22px;
		}

		.modal-box button {
			background: #137fec;
			color: #fff;
			border: none;
			border-radius: 10px;
			padding: 10px 26px;
			font-size: 15px;
			cursor: pointer;
			transition: background 0.2s;
		}

		.modal-box button:hover {
			background: #0f66c2;
		}

		@keyframes modalIn {
			from {
				transform: scale(0.9);
				opacity: 0;
			}
			to {
				transform: scale(1);
				opacity: 1;
			}
		}
		/* FIN POPUP**/