/* ===========================================
   フォームメッセージとアニメーション
   =========================================== */

/* フォームメッセージのアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message {
    animation: fadeIn 0.3s ease;
}

/* 送信ボタンの状態 */
.submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none !important;
}

.submit-btn:disabled:hover {
    transform: none !important;
}
