body {
    background-color: darkblue;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    color: lime;
    margin-top: 20px;
}
form {
    max-width: 400px;
    margin: auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}
input, button {
    width: 100px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #4caf50;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

form {
    animation: apparaitre 0.5s ease-in-out;
}

@keyframes apparaitre {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button:active {
    transform: scale(0.95);
    background-color: #3e8e41;
}

.navbar {
    background-color: #333;
    overflow: hidden;
    padding: 10px 0;
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.navbar ul li {
    display: inline;
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #4caf50;
}

input, button {
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    outline: none;
}

button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: darkblue;
    margin: 0;
    padding: 0;
}

h1 {text-align: center;
color: lime;
margin-bottom: 20px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

form input, form button, form progress {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form input:focus {
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    outline: none;
}

form button {
    background-color: #4caf50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background-color: #45a049;
}

form progress {
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
}

form progress::-webkit-progress-bar {
    background-color: #4caf50;
}

form progress::-webkit-progress-value {
    background-color: #4caf50;
}

form a {
    color: #4caf50;
    text-decoration: none;
}

form a:hover {
    text-decoration: underline;
}

.message-erreur {
    color: red;
    font-size: 14px;
    margin-top: -10px;
    margin-bottom: 10px;
}

form {
    animation: apparaitre 0.5s ease-in-out;
}

@keyframes apparaitre {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.input-container {
    position: relative;
    margin-bottom: 15px;
}

.input-container i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #4caf50;
}

.input-container input {
    padding-left: 35px; /* Laisser de l'espace pour l'icône */
}

.input-container input:hover {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

@media (max-width: 600px) {
    form {
        padding: 15px;
    }

    .input-container input {
        font-size: 14px;
    }

    button {
        font-size: 14px;
        padding: 8px;
    }
}

.about-inscription {
    text-align: center;
    color: black;
    padding: 20px;
    background-color: floralwhite;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

body {
    background-color: darkblue;
}

.terms-and-conditions {
    background-color: #f9f9f9; /* Couleur de fond claire */
    padding: 20px;
    border-radius: 10px; /* Coins arrondis */
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre légère */
    font-family: Arial, sans-serif;
}

.terms-and-conditions h2 {
    font-size: 24px; /* Taille de la police */
    color: #4caf50; /* Couleur verte */
    text-align: center; /* Centre le titre */
    margin-bottom: 15px;
    text-transform: uppercase; /* Met le texte en majuscules */
}

.terms-and-conditions p {
    font-size: 16px;
    color: #555; /* Couleur du texte */
    line-height: 1.6; /* Hauteur de ligne pour une meilleure lisibilité */
    text-align: justify;
    margin-bottom: 15px;
}

.terms-and-conditions ul {
    list-style: disc; /* Style des puces */
    margin-left: 20px; /* Décalage des puces */
    color: #333;
}

.terms-and-conditions ul li {
    margin-bottom: 10px; /* Espacement entre les éléments */
    font-size: 16px;
}

.terms-and-conditions .read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4caf50; /* Couleur de fond */
    color: white; /* Couleur du texte */
    text-decoration: none; /* Supprime le soulignement */
    border-radius: 5px; /* Coins arrondis */
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.terms-and-conditions .read-more:hover {
    background-color: #45a049; /* Couleur au survol */
    transform: scale(1.05); /* Légère mise en avant */
}

.terms-and-conditions {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accept-button {
    display: block; /* Transforme le bouton en bloc pour le centrer */
    margin: 20px auto; /* Centre horizontalement et ajoute un espacement vertical */
    padding: 10px 20px;
    background-color: limegreen; /* Couleur de fond */
    color: white; /* Couleur du texte */
    border: none;
    border-radius: 5px; /* Coins arrondis */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.accept-button:hover {
    background-color: #45a049; /* Couleur au survol */
    transform: scale(1.05); /* Légère mise en avant */
}

.accept-button:active {
    transform: scale(0.95); /* Réduction légère au clic */
    background-color: #3e8e41;
}

.accept-button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
