
		:root {
	  		--font-sans: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
				   "Helvetica Neue", Arial, sans-serif;
		}
			
		html { font-size: 15px; }
		body { font-family: var(--font-sans); line-height: 1.45; }
		
		/* s'assurer que les formulaires et tables héritent */
		button, input, select, textarea, table { font: inherit; }
		
		/* (optionnel) si un plugin (ex: DataTables) force sa police */
		.dataTables_wrapper { font-family: inherit; }
			
	
	
		body {
            font-family: Arial, sans-serif;
            color: #fff;
            margin: 0;
            padding: 0;
        }
		
        h1, h2 {
            text-align: center;
        }
	

        .btn-main {
            display: inline-block;
            background: #00aa66;
            color: white;
            padding: 12px 25px;
            margin-top: 10px;
            border-radius: 8px;
            text-decoration: none;
        }
		
		form input {
			margin: 10px;
			padding: 10px;
			width: 200px;
		}
		
		button {
			padding: 10px 20px;
			background-color: #4CAF50;
			border: none;
			color: white;
			cursor: pointer;
			border-radius:8px;
		}
		
		.error {
			color: red;
		}