body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-color: #fff;
    color: #333;
    padding: 20px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ccc;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}

.banner .logo img {
    max-height: 80px; /* Ajuste la taille du logo selon tes besoins */
    padding-left: 30px;
}

.banner h1 {
    flex-grow: 1;
    text-align: center;
    margin: 0;
    font-size: 1.5em;
    color: #333;
}

.banner .action {
    display: flex;
    gap: 10px;
}

.banner .action button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: orangered;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner .action button:hover {
    background-color: darkorange;
}

.banner .action button[type="reset"] {
    background-color: #f44336;
}

.banner .action button[type="reset"]:hover {
    background-color: #d32f2f;
}

em {
    color:#007BFF;
}

form {
    width: 100%;

}

label {
    display: block;
    margin-top: 20px;
    color: #555;
    font-weight: bold;
}

input, select, textarea {
    width: 95%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input:hover, select:hover, textarea:hover {
    border: 1px solid #007BFF;
}

.boutons {
    align-items: center ;
    margin-top: 20px;
}

button {
    margin-top: 0px;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

button[type="reset"] {
    background-color: #f44336;
}

button[type="reset"]:hover {
    background-color: #f44400;
}

.footer {
    margin-top: 20px;
    text-align: center;
}

section {
    width: 95%;
    max-width: 1000px;

    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.intro-fr {
    font-weight: 600;
}

.intro-en {
    font-style: italic;
}

.radio-group {
    display: flex;
    gap: 10px;
    margin-left: 50px;
    align-items: baseline;

}

.radio-group input[type="radio"] {
    width: 20px;
    height: 20px;
}

.radio-group label {
    font-size: 1.3em;
    margin-bottom: 10px;
    font-weight: 100;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' 0,
  'opsz' 48
}