@charset "utf-8";
/* CSS Document */
<style>
        /* Style général */
	html, body {
   		height: 100%;
    	margin: 0;
    	padding: 0;
	}

	body {
    	font-family: Arial, sans-serif;
    	color: white;
    	display: flex;
    	flex-direction: column;
    	align-items: center;

    	background-image: url('infographies/FondWebFonce.jpg');
    	background-size: cover;
    	background-position: center;
    	background-repeat: no-repeat;
    	background-attachment: fixed; /* optionnel pour effet de défilement fixe */
	}
	body a {
  		color: #6fff6f; /* vert clair lisible sur fond sombre */
  		text-decoration: underline;
	}
        
        /* Style de la carte de formulaire */
        .container {
            max-width: 800px;
            background: rgba(0, 70, 0, 0.3); /* légèrement transparent */
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            text-align: center;
            transition: all 0.3s ease;
        }

        .container:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        img {
            width: 80%;
            max-width: 300px;
            height: auto;
            margin-bottom: 20px;
        }

        p {
            font-size: 1.1em;
            margin-bottom: 20px;
            color: #666;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        label {
            text-align: left;
            font-weight: bold;
            color: #fff;
            font-size: 0.9em;
            margin-bottom: 4px;
        }

        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 1em;
            transition: border 0.3s;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            border-color: #4CAF50;
            outline: none;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            font-size: 0.9em;
            color: #333;
        }

        input[type="checkbox"] {
            margin-right: 8px;
            transform: scale(1.1);
        }

        .buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        input[type="submit"],
        input[type="button"] {
            padding: 10px 20px;
            font-size: 1em;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            color: #fff;
            transition: background-color 0.3s;
        }

        input[type="submit"] {
            background-color: #4CAF50;
        }

        input[type="button"] {
            background-color: #888;
        }

        input[type="submit"]:hover {
            background-color: #45a049;
        }

        input[type="button"]:hover {
            background-color: #666;
        }

        a {
            color: #4CAF50;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
        }

        a:hover {
            color: #388e3c;
        }
        </style>

