/* information ——————————————————————— */
.information--erreur {
    align-items: center;
    background-color: var(--color-accent-light);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    display: flex;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 400;
    justify-content: space-between;
    overflow: hidden;
    padding: var(--space-8) var(--space-12);
    position: relative;
    text-decoration: none;
}
.information--success {
    align-items: center;
    background-color: var( --color-success-100);
    border: 2px solid var(--color-success-dark);
    border-radius: var(--radius-md);
    color: var(--color-success-dark);
    display: flex;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 400;
    justify-content: space-between;
    overflow: hidden;
    padding: var(--space-8) var(--space-12);
    position: relative;
    text-decoration: none;
}
