.form-message {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    animation: slideIn 0.3s ease-out;
}
.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
