/* Notifications pour les formulaires */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: #ffffff;
}

.notification-error .notification-icon {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    color: #ffffff;
}

.notification-message {
    flex: 1;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
}

.notification-success {
    border-left: 4px solid #6c5ce7;
}

.notification-error {
    border-left: 4px solid #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}
