/* Style général */
body {
    font-family: 'Arial', sans-serif;
    background-color: #0C2B47; /* Couleur principale sombre */
    color: #FFFFFF; /* Texte blanc */
    margin: 0;
    padding: 0;
}

/* Style du logo */
header {
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.logo {
    width: 150px;
    height: auto;
}

/* Style des titres */
h1, h2 {
    color: #3DB5E3; /* Bleu tiré du logo */
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

/* Changement de langue */
.lang-switcher {
    position: absolute;
    top: 20px;
    left: 20px;
}

.lang-switcher a {
    color: #FFFFFF; /* Couleur des liens en blanc */
    text-decoration: none;
    margin-right: 10px;
    font-size: 14px;
}

.lang-switcher a:hover {
    text-decoration: underline; /* Soulignement au survol */
}

/* Formulaire */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1A3D5C; /* Couleur légèrement plus claire */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Style des champs de formulaire */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #3DB5E3; /* Bordure bleue futuriste */
    background-color: #102A4C;
    color: #FFFFFF;
}

/* Style des boutons */
input[type="submit"], .btn-previous, .btn-restart {
    background-color: #3DB5E3; /* Couleur principale pour les boutons */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

input[type="submit"]:hover, .btn-previous:hover, .btn-restart:hover {
    background-color: #55C7F4; /* Couleur au survol */
}

/* Boutons Précédent et Revenir au début */
.btn-previous, .btn-restart {
    margin-top: 10px;
    text-decoration: none;
}

/* Autres éléments */
label {
    color: #C1D1E8; /* Texte des labels en couleur gris clair */
    font-weight: bold;
}

/* Effets de survol pour les boutons */
input[type="submit"] {
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #55C7F4;
}

/* Animations pour les titres */
h1 {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
