.swm-form-message {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.swm-form-message.swm-success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid #2ecc71;
    color: #2ecc71;
}

.swm-form-message.swm-error {
    background: rgba(255, 71, 71, 0.2);
    border: 1px solid #ff4747;
    color: #ff6b6b;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modale v2 */
.swm-v2-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    will-change: auto !important;
}


.swm-v2-modal,
.swm-v2-modal * {
    transform: none !important;
    will-change: auto !important;
}

.swm-form-message {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}