/*.text-dark-green {*/
/*    color: #106025;*/
/*}*/

/*.form-container {*/
/*    max-width: 600px;*/
/*    margin: 50px auto;*/
/*    padding: 20px;*/
/*    border-radius: 8px;*/
/*    background: #f8f9fa;*/
/*    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);*/
/*}*/

/* Arrière-plan moderne */
/*body {*/
/*    background: linear-gradient(to right, #106025, #106025);*/
/*    min-height: 100vh;*/
/*    display: flex;*/
/*    flex-direction:column;*/
/*    justify-content:space-between;*/
/*    align-items: center;*/
    /*justify-content: center;*/
/*    padding: 20px;*/
/*    margin:0;*/
/*}*/

/* Centrer et élargir le conteneur */
/*.container {*/
/*    flex:1;*/
/*    width: 100%;*/
    max-width: 1200px; /* Ajuste la largeur du formulaire */
/*    padding: 20px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items:center;*/
/*}*/

/* Carte du formulaire */
/*.form-container {*/
/*    background: #fff;*/
/*    border-radius: 15px;*/
/*    padding: 30px;*/
/*    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);*/
/*    max-width: 900px;*/
/*    width: 100%;*/
/*    transition: all 0.3s ease-in-out;*/
/*    margin:auto;*/
/*}*/

/*.form-container form{*/
/*    width:100%;*/
/*}*/

/* Titres de section */
/*.form-section h4 {*/
/*    font-weight: bold;*/
/*    border-bottom: 3px solid #106025;*/
/*    padding-bottom: 5px;*/
/*    margin-bottom: 20px;*/
/*    color: #106025;*/
/*}*/

/*.text-dark-green {*/
/*    color: #fbc50f !important;*/
/*}*/


/* Champs avec icônes */
/*.input-group-text {*/
/*    background: #106025;*/
/*    color: #fff;*/
/*    border-radius: 10px 0 0 10px;*/
/*}*/

/*.form-select {*/
    height: 45px; /* Increase height */
    font-size: 16px; /* Increase font size */
    width: 100%; /* Make it responsive */
/*    padding: 10px;*/
/*    border-radius: 10px;*/
/*    border: 1px solid #ccc;*/
/*}*/

/*.input-group>.form-control, .input-group>.form-floating, .input-group>.form-select {*/
/*    position: relative;*/
/*    flex: 1 1 auto;*/
/*    width: 100%;*/
/*    min-width: 0;*/


/*.form-control {*/
/*    border-radius: 10px;*/
/*}*/

/* Bouton stylisé */
/*.btn-primary {*/
/*    background: #106025;*/
/*    border: none;*/
/*    padding: 10px;*/
/*    border-radius: 10px;*/
/*    font-size: 16px;*/
/*    font-weight: bold;*/
/*    transition: 0.3s;*/
/*}*/

/*.btn-primary:hover {*/
/*    background: #fbc50f;*/
/*}*/

/* Checkbox stylisé */
/*.form-check-input:checked {*/
/*    background-color: #106025;*/
/*    border-color: #106025;*/
/*}*/

/*footer {*/
/*    width: 100%;*/
/*    background: #106025;*/
/*    color: #fff;*/
/*    text-align: center;*/
/*    padding: 15px 0;*/
/*    position: relative;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*}*/

/* Couleur principale */
.text-dark-green {
    color: #106025 !important;
}

/* Fond de page */
body {
    background: linear-gradient(to right, #106025, #106025);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Conteneur principal */
.container {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Formulaire */
.form-container {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    transition: all 0.3s ease-in-out;
    margin: auto;
    box-sizing: border-box;
}

.form-container form {
    width: 100%;
}

.form-section h4 {
    font-weight: bold;
    border-bottom: 3px solid #106025;
    padding-bottom: 5px;
    margin-bottom: 20px;
    color: #106025;
    font-size: 20px;
}

/* Groupe d’entrée */
.input-group-text {
    background: #106025;
    color: #fff;
    border-radius: 10px 0 0 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    font-size: 14px;
    white-space: nowrap;
}

.input-group {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-bottom: 15px;
}

.input-group > .form-control,
.input-group > .form-floating,
.input-group > .form-select {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    border-radius: 0 10px 10px 0;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-control,
.form-select {
    height: 45px;
    font-size: 16px;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Checkbox */
.form-check {
    margin-bottom: 10px;
}

.form-check-input:checked {
    background-color: #106025;
    border-color: #106025;
}

/* Bouton */
.btn-primary {
    background: #106025;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s;
    width: 100%;
}

.btn-primary:hover {
    background: #fbc50f;
    color: #000;
}

/* Footer */
footer,
.footer-copyright-area {
    width: 100%;
    background: #106025;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
        box-shadow: none;
        border-radius: 10px;
    }

    .input-group-text {
        font-size: 14px;
        padding: 10px;
    }

    .form-control,
    .form-select {
        font-size: 14px;
        padding: 8px;
        height: auto;
    }

    .btn-primary {
        font-size: 14px;
        padding: 10px;
    }

    .form-section h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 15px;
    }

    .input-group {
        flex-direction: column;
        align-items: stretch;
    }

    .input-group-text {
        border-radius: 10px 10px 0 0;
        justify-content: center;
        width: 100%;
    }

    .form-control,
    .form-select {
        border-radius: 0 0 10px 10px;
        width: 100%;
    }

    .form-section h4 {
        font-size: 16px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 10px;
    }
}
