/* Importation de la police */
@import url("http://fonts.googleapis.com/css?family=Varela+Round");

/* Réinitialisation de base */
/** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {
    font-family: "Varela Round", sans-serif; /* Police principale */
 /*   background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
/*}

p, label, small, h4, h6, input, textarea, select, .captcha-image, .custom-checkbox label {
    font-family: "Varela Round", sans-serif; /* Application universelle */
/*}
*/
p {
   font-family: "Varela Round"
  font-size: 13px;
    color: #FF0000;
    padding: 2px 0;
}

/* Conteneur de formulaire */
/*.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
}

/* Titres */
/*h4, h6 {
      font-family: "Varela Round", sans-serif; /* Police principale */
/*    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

h4 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}
*/
/* Champs du formulaire */
/*.form-row {
  /*  display: flex;
    gap: 20px;*/
    /*margin-bottom: 20px;
   /* flex-wrap: wrap;*/
/*}

/*.form-group {
    /*flex: 1;
    display: flex;
    flex-direction: column;*/
/*}
*/
/*label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
}*/

input, textarea, select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9;
    width: 100%;
}

input:focus, textarea:focus, select:focus {
    border-color: #007BFF;
    background-color: #eaf4ff;
    outline: none;
}

/* Captcha */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.captcha-image {
    font-size: 2.1rem;
    font-weight: bold;
    color: #fff;
    background-color: #CC3300;
    padding: 8px 14px;
    border-radius: 4px;
}

/* Boutons */
.btn {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	color: #fff;
	background-color: #333333;
	transition: background-color 0.3s;
	margin-right: 10px;
}

.btn:hover {
	background-color: #CCCCCC;
}

.btn.secondary {
    background-color: #006666;
}

.btn.secondary:hover {
    background-color: #006699;
}

/* Conteneur des checkboxes */
.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
}

.custom-checkbox input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Texte associé */
.custom-checkbox label {
    color: #333;
    cursor: pointer;
}

/* Styles pour les liens */
.custom-checkbox a {
    color: #009900;
    text-decoration: none;
}

.custom-checkbox a:hover {
    color: #006633;
    text-decoration: underline;
}

/* Style de base pour small */
small {
    font-size: 17px;
    color: #FF0000;
    font-style: italic;
}

small.align-right {
    text-align: right;
}

small.highlight {
    color: #007BFF;
    font-weight: bold;
}

small.tag {
    background-color: #009900;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 3px 8px;
}

/* Champs requis */
input:required, textarea:required, select:required {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

input:required:invalid, textarea:required:invalid, select:required:invalid {
    border: 2px solid #e74c3c;
    background-color: #fee;
}

input:required:valid, textarea:required:valid, select:required:valid {
    border: 2px solid #2ecc71;
    background-color: #eef;
}

/* Responsive */
@media (max-width: 768px) {
/*    .form-row {
        flex-direction: column;
    }
*/
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 600px) {
    small {
        font-size: 10px;
        color: #555;
    }
}
