body {
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, #0a0f1c, #1e3a5f); /* bleu foncé */
    color: #fff;
}

/* Conteneur principal */
.container {
    background: #0f172a; /* noir bleuté */
    padding: 25px;
    border-radius: 10px;
    max-width: 1100px;
    margin: 30px auto;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.4); /* bleu */
}

.tete {
    display: flex;
    align-items: center;
    justify-content: center; /* centre globalement */
    gap: 10px; /* espace entre images et texte */
    width: 100%;
    padding: 20px;
    background: #ffffff;
}
.img-gauche,
.img-droite {
    width: 280px; /* augmente la taille */
    height: auto;
}

.texte {
     /* empêche de trop s’étirer */
    text-align: center;
    font-size: 10px;
    color: #000; /* texte lisible sur fond blanc */
      border-radius: 10px;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}
.tete {
    gap: 10px;
}
/* MEDIA QUERY POUR TÉLÉPHONES */
@media (max-width: 768px) {
    .tete {
        flex-direction: column; /* empile verticalement */
        gap: 15px; /* plus d’espace entre éléments */
        padding: 15px;
    }

    .img-gauche,
    .img-droite {
        width: 80%; /* réduit la taille des images */
        max-width: 250px;
    }

    .texte {
        font-size: 12px; /* texte légèrement plus grand pour lisibilité mobile */
    }
}
/* Sections */
.info, .mili, .Age, .Agt, .tel, .sit, .choix, .adhesion-box {
    max-width: 1000px;
    margin: 30px auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    background: #111827; /* noir */
    border: 2px solid #2563eb; /* bleu */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.4);
}

h3 {
    text-align: center;
    color: #4da6ff; /* bleu clair */
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-size: 28px;
    text-transform: uppercase;
}
/* Champs */
.fil, .grd, .unt, .lim, .sal {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

/* Labels */
label {
    display: block;
    margin-bottom: 8px;
    color: #93c5fd; /* bleu clair doux */
    font-weight: bold;
    font-size: 18px;
}

/* Inputs */
input, select {
    width: 100%;
    padding: 12px;
    font-size: 17px;
    border: 1px solid #374151;
    border-radius: 6px;
    background: #020617; /* noir profond */
    color: white;
    transition: 0.3s;
}

/* Focus effet */
input:focus, select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 8px #3b82f6;
}

/* Radio */
input[type="radio"] {
    accent-color: #3b82f6;
}

/* ===== ADHESION ===== */


.adhesion-box label {
    font-size: 22px;
    color: #60a5fa;
    margin-bottom: 15px;
}

.adhesion-box input[type="radio"] {
    transform: scale(1.5);
    margin: 0 10px;
}

.adhesion-box span {
    font-size: 18px;
    margin-right: 20px;
}

/* Bouton */
button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #2563eb, #1e40af); /* bleu */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

button:hover {
    background: linear-gradient(45deg, #1e40af, #2563eb);
    transform: scale(1.03);
}

.adhesion-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    cursor: pointer;
}


/* Responsive */
@media (max-width: 768px) {
    .info, .mili, .Age, .Agt, .tel, .sit, .choix {
        flex-direction: column;
    }
}