/* Corps de la page */
/* Corps de la page */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Conteneur du formulaire */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Prendre toute la hauteur de la page */
}

.form-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin: 0px auto;
	float:left;
}

/* Conteneur pour l'image */
.image-container {
    margin-right: 20px;
	float:left;
	width:40%;
}

.inside_form {
	width:80vw;
    text-align: left;
    margin: 0px auto;
}

/* Image */
.image-container img {
    width:100%;
	height:auto;
	/*max-height:90vh;
	max-width:auto;*/
	
    border-radius: 8px;
	float:left;
}

.subcont_form {
	width:50%;
	float:left;
}

.subcont_form.large {
	width:100%;
	
}

/* Titre du formulaire */
h1 {
    text-align: center;
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

/* Paragraphe de description */
p {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 20px;
}

/* Champs du formulaire */
label {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

/* Inputs et selects */
input[type="text"], input[type="email"], select, input[type="checkbox"] {
    width: fit-content;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

input[type="text"]:focus, input[type="email"]:focus, select:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Style des cases à cocher */
input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

input[type="checkbox"]:checked {
    background-color: #007BFF;
    border-color: #007BFF;
}

/* Selecteur du nombre d'inscriptions */
select {
    font-size: 14px;
    color: #555;
}

/* Bouton de soumission */
button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    width: fit-content;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Div du montant total */
#montant_total {
    border: 1px solid #007BFF;
    border-radius: 4px;
    background-color: #f1f9ff;
    padding: 15px;
    font-size: 16px;
    color: #007BFF;
    margin-top: 20px;
    text-align: center;
}

/* Style général pour les erreurs ou messages */
p {
    font-size: 16px;
    color: #28a745;
    text-align: center;
}

/* Espace entre les éléments */
input[type="checkbox"] + label {
    font-size: 14px;
    margin-left: 10px;
    color: #555;
}

select + label {
    font-size: 14px;
    margin-left: 10px;
    color: #555;
}
