/* Style général */
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

/* Animation des couleurs du texte FINSERV */
.animated-colors {
    font-size: 6rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff7eb9, #8a2be2, #ff7eb9); /* Dégradé initial */
    background-size: 200% auto; /* Étendre le dégradé */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: colorShift 5s linear infinite; /* Animation */
}

/* Définir l'animation */
@keyframes colorShift {
    0% {
        background-position: 0% 50%; /* Début du dégradé */
    }
    50% {
        background-position: 100% 50%; /* Milieu du dégradé */
    }
    100% {
        background-position: 0% 50%; /* Retour au début */
    }
}


/* Style du titre FINSERV */
h1 {
    font-size: 6rem;
    font-weight: bold;
    background: linear-gradient(to right, #ff7eb9, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: 0;
}

/* Style du texte sous le titre */
p {
    font-size: 1.5rem;
    color: #666;
    margin: 10px 0 20px 0;
    text-align: center;
    width: 100%;
}

/* Style du formulaire */
form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    display: flex;
    flex-direction: column;
}

/* Style des labels */
label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
}

/* Style des champs de saisie */
input, textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Style spécifique pour le textarea */
textarea {
    resize: vertical;
    height: 100px;
}

/* Style du bouton */
button {
    background: linear-gradient(to right, #ff7eb9, #8a2be2);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
}

/* Effet au survol du bouton */
button:hover {
    opacity: 0.9;
}

/* Styles supplémentaires pour la page de message */
        .message-container {
            text-align: center;
            padding: 50px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            margin: 50px auto;
        }

        .message-container h2 {
            font-size: 2rem;
            color: #333;
            margin-bottom: 20px;
        }

        .message-container p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
        }

        .message-container a {
            background: linear-gradient(to right, #ff7eb9, #8a2be2);
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 1rem;
            transition: opacity 0.3s;
        }

        .message-container a:hover {
            opacity: 0.9;
        }