/* Fichier CSS pour les formulaires complexe (Plusieurs étapes) */
#form_title{
    animation-duration: 3s;
    animation-name: form_title;
}
@keyframes form_title {
    from {
        margin-left: 40%;
        opacity: 0%;
    }

    to {
        margin-left: 0%;
        opacity: 100%;
    }
}

#form_describe{
    font-style: italic;
    font-size: large;

    animation-duration: 4s;
    animation-name: form_describe;
}

@keyframes form_describe {
    from {
        opacity: 0%;
    }

    60% {
        opacity: 0%;
    }

    to {
        opacity: 100%;
    }
}

#formV{
    font-size: large; 

    animation-duration: 4s;
    animation-name: form_content;
}
@keyframes form_content {
    from {
        opacity: 0%;
    }

    80% {
        opacity: 0%;
    }

    to {
        opacity: 100%;
    }
}