@charset "utf-8";
/* CSS Document */

body {
	font-family: Arial, sans-serif;
	color: #333;
        }
        h2 {
	color: #D9A5ED;
        }
        form {
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background-size: cover;
        }
        label {
	display: block;
	margin-bottom: 10px;
	color: #D5C6E1;
        }
        input[type="text"],
        input[type="email"],
        textarea {
	width: 50%;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: #DCC9E7;
        }
        textarea {
	width: 50%; /* Définition de la largeur */
	height: 100px;
        }
        button[type="submit"] {
            background-color: #eee;
            color: #555;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        button[type="submit"]:hover {
            background-color: #ccc;
        }
       </style>
