/* Form styles
---------------------------------- */
.form {
    display: flex;
    flex-direction: column;
}

.form * {
    margin: 0 !important;
    padding: 0 !important;
    font-size: inherit;
}

.form > .field + .field {
    margin-top: 1.25em !important;
}

.form label {
    font-weight: bold;
}

.form .description {
    font-size: 0.7rem;
    font-style: italic;
    line-height: 1.2em;
    font-family: arial;
    color: #666;
    margin-top: 2px !important;
}

.form input,
.form textarea {
    width: 100%;
    padding: 0.75em !important;
    border-radius: 5px;
    border: 1px solid #CCC;
    margin-top: 0.5em !important;
}


.mc4wp-alert.mc4wp-success {
    padding: 2em;
    background: #b7dfb7;
}

.mc4wp-alert.mc4wp-success * {
    margin: 0;
}

.form input.button {
    background: var(--accent-color, #00abff);
    color: white;
    cursor: pointer;
    padding-top: 1.25em !important;
    padding-bottom: 1.25em !important;
    border: none;
}

.form input.button:hover {
    background: #393939;
}

.field.message {
    display: none;
}


.form .fleche {
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px !important;
}

.form .fleche img {
    width: 30px;
    height: auto;
    display: block;
    margin-inline: auto;
}

#mc4wp-form-1:target .fleche {

    display: flex;

    /* Afficher l'élément */
    opacity: 1;
    /* Le rendre visible */
}

.form .fleche {
    display: flex;
}

@media (min-width:900px) {
    .form .fleche img {
        width: 40px;
    }
}